/* Variables */
:root {
  --primary-color: #3860e2;
  --primary-light: #5c7ff4;
  --primary-dark: #2546b3;
  --secondary-color: #ffa200;
  --secondary-light: #ffb73d;
  --secondary-dark: #e08e00;
  --gray-light: #f5f7fa;
  --gray-lighter: #f8f9fb;
  --gray-medium: #dfe4ea;
  --gray-dark: #353b48;
  --text-color: #2d3436;
  --text-light: #647380;
  --white: #ffffff;
  --success-color: #27ae60;
  --error-color: #e74c3c;
  --warning-color: #f39c12;
  --border-radius: 8px;
  --border-radius-sm: 4px;
  --border-radius-lg: 12px;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0 5px 15px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --section-spacing: 5rem;
}

/* Reset et styles de base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style-position: inside;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-spacing) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 3px;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Barre de navigation */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  margin-right: 10px;
}

.nav-logo span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-dark);
  font-weight: 500;
  transition: var(--transition);
  font-size: 1rem;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* Boutons */
.btn {
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-outline-light {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-telegram {
  background-color: #0088cc;
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-telegram:hover {
  background-color: #006699;
  color: var(--white);
}

.btn-cta {
  background-color: var(--secondary-color);
  color: var(--white);
  font-weight: 600;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-cta:hover {
  background-color: var(--secondary-dark);
  color: var(--white);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://via.placeholder.com/1920x1080?text=Background') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.hero-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  max-width: 100%;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Info Banner */
.info-banner {
  background-color: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.info-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  gap: 1rem;
}

.info-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.info-item span {
  font-weight: 500;
  color: var(--gray-dark);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.service-icon {
  padding: 3rem 0 2rem;
  color: var(--primary-color);
  text-align: center;
  font-size: 3.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding: 0 1.5rem;
}

.service-card p {
  padding: 0 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  flex: 1;
}

.service-card .btn {
  margin: 0 1.5rem 1.5rem;
}

/* Section Bot Telegram */
.telegram-section {
  background-color: var(--gray-lighter);
  position: relative;
  overflow: hidden;
}

.telegram-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://via.placeholder.com/1920x1080?text=Pattern') center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.telegram-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
}

.telegram-content {
  position: relative;
  z-index: 1;
}

.telegram-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.section-intro {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: var(--text-light);
}

.feature-list {
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.feature-item i {
  color: var(--success-color);
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--gray-dark);
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.coming-soon {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
  border-left: 4px solid var(--primary-color);
}

.coming-soon h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.coming-soon ul {
  list-style: none;
}

.coming-soon li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.coming-soon li i {
  color: var(--primary-light);
  font-size: 1rem;
}

.telegram-image {
  position: relative;
  z-index: 1;
}

.telegram-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-hover);
  max-width: 100%;
}

/* Section Démarches */
.demarches-section {
  background-color: var(--white);
}

.tabs-container {
  margin-top: 2rem;
}

.tabs-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.tab-btn {
  background-color: var(--gray-light);
  border: none;
  border-radius: var(--border-radius);
  padding: 0.8rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--gray-dark);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.tab-btn:hover:not(.active) {
  background-color: var(--gray-medium);
}

.tabs-content {
  position: relative;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.demarche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.demarche-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}

.demarche-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--primary-light);
}

.demarche-card h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.demarche-card h4 i {
  color: var(--primary-color);
}

.demarche-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.demarche-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-block;
  position: relative;
}

.demarche-link::after {
  content: '→';
  margin-left: 5px;
  transition: var(--transition);
}

.demarche-link:hover {
  color: var(--primary-dark);
}

.demarche-link:hover::after {
  margin-left: 8px;
}

/* Section Témoignages */
.testimonial-section {
  background-color: var(--gray-lighter);
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://via.placeholder.com/1920x1080?text=Quotes') center/cover no-repeat;
  opacity: 0.03;
  z-index: 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.testimonial-rating {
  color: #FFD700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--primary-dark);
}

.testimonial-author p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Section CTA */
.cta-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://via.placeholder.com/1920x1080?text=Pattern') center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-section p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background-color: var(--gray-dark);
  color: var(--white);
  padding: 4rem 0 1.5rem;
  margin-top: auto;
  position: relative;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
}

.footer-col h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  color: var(--white);
  padding-bottom: 0.8rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 50px;
  background-color: var(--secondary-color);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-contact i {
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
}

.contact-btn {
  margin-top: 1.5rem;
  width: 100%;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ========== STYLES PAGE DE SIGNATURE ========== */

.signature-page {
  background-color: var(--gray-lighter);
}

/* Styles spécifiques à la page de signature */
.signature-container-main {
  max-width: 800px;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  margin-bottom: 2rem;
}

.signature-info-box {
  background-color: rgba(var(--primary-color-rgb), 0.05);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-color);
}

:root {
  --primary-color-rgb: 56, 96, 226;
}

.signature-info-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.signature-info-header i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.signature-info-header h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.signature-info-box p {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.signature-info-box p:last-child {
  margin-bottom: 0;
}

.signature-wrapper {
  border: 2px dashed var(--gray-medium);
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  overflow: hidden;
  background-color: var(--white);
}

.signature-area {
  width: 100%;
  height: 300px;
  position: relative;
}

.signature-pad {
  width: 100%;
  height: 100%;
  touch-action: none;
  background-color: var(--white);
}

.signature-instructions {
  text-align: center;
  padding: 1rem;
  background-color: var(--gray-lighter);
  color: var(--gray-dark);
  font-weight: 500;
  border-top: 1px solid var(--gray-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.signature-instructions i {
  color: var(--primary-color);
}

.signature-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Messages d'état */
.status-message {
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  margin: 1.5rem 0;
  font-size: 1rem;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.status-message.info {
  background-color: rgba(25, 118, 210, 0.1);
  color: #1565c0;
  border-left: 4px solid #1976d2;
}

.status-message.success {
  background-color: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
  border-left: 4px solid #4caf50;
}

.status-message.error {
  background-color: rgba(211, 47, 47, 0.1);
  color: #c62828;
  border-left: 4px solid #f44336;
}

/* Empêcher le défilement pendant la signature sur mobile */
body.signing {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Media queries */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-container {
    flex-direction: column;
  }
  .hero-content, .hero-image {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  
  .telegram-grid {
    grid-template-columns: 1fr;
  }
  .telegram-content {
    order: 2;
  }
  .telegram-image {
    order: 1;
    margin: 0 auto;
    max-width: 300px;
  }
}

@media (max-width: 992px) {
  :root {
    --section-spacing: 4rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .info-banner .container {
    justify-content: center;
  }
  
  .info-item {
    width: 50%;
    justify-content: center;
    text-align: center;
    padding: 1rem;
  }
  
  .signature-container-main {
    padding: 1.5rem;
  }
  
  .signature-buttons {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 3rem;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    max-height: 300px;
    padding: 1rem 0;
  }
  
  .nav-links a {
    padding: 0.8rem 2rem;
    width: 100%;
    text-align: center;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero {
    padding: 5rem 0 3rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .info-item {
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .signature-area {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero p, .section-header p, .cta-section p {
    font-size: 1rem;
  }
  
  .tabs-nav {
    gap: 0.5rem;
  }
  
  .tab-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .signature-container-main {
    padding: 1rem;
    border-radius: var(--border-radius);
  }
  
  .signature-area {
    height: 200px;
  }
  
  .signature-info-box {
    padding: 1rem;
  }
} 