* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #4b1d3f;
  --dark-navy: #2c0f27;
  --emerald: #ff6f61;
  --emerald-light: #ff9f91;
  --gold: #ffd166;
  --gold-light: #ffeaa7;
  --white: #fff7f2;
  --light-gray: #f3e8ee;
  --text-gray: #5c3d4a;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.14);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: #1e293b;
  background: var(--white);
  overflow-x: hidden;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  color: var(--light-gray);
}

.contact-info a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--gold-light);
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--emerald));
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--gold);
}

nav a:hover::after {
  width: 100%;
}

.cta-btn-header {
  background: linear-gradient(135deg, var(--gold) 0%, var(--emerald) 100%);
  color: var(--navy) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn-header::after {
  display: none;
}

.cta-btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 50%, #2c0f27 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(44, 15, 39, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -2px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold) 0%, var(--emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.4rem;
  color: var(--light-gray);
  margin-bottom: 3rem;
  line-height: 1.6;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--emerald) 100%);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--navy);
}

.trust-badges {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.badge-icon {
  width: 50px;
  height: 50px;
  background: rgba(44, 15, 39, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  font-size: 1.5rem;
}

.badge-text {
  color: var(--light-gray);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 6rem 2rem;
  background: var(--white);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(44, 15, 39, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.highlight-item {
  display: flex;
  gap: 1rem;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--emerald) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.highlight-text {
  color: var(--text-gray);
}

.highlight-text strong {
  color: var(--navy);
}

.about-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
  border-radius: 15px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(44, 15, 39, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.about-visual-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.stat {
  margin-bottom: 2rem;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, var(--emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--light-gray);
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f5 100%);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.premium-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--emerald) 100%);
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--emerald) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.premium-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.premium-card p {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 6rem 2rem;
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 100%);
  border-radius: 12px;
  padding: 2rem;
  color: var(--white);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -100%;
  right: -100%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(44, 15, 39, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.service-card:hover::before {
  top: -50%;
  right: -50%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(44, 15, 39, 0.2);
}

.service-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--emerald) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
}

.service-content {
  position: relative;
  z-index: 1;
}

.service-content h4 {
  font-size: 0.9rem;
  color: var(--emerald-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.service-list {
  list-style: none;
}

.service-list li {
  font-size: 0.9rem;
  color: var(--light-gray);
  margin-bottom: 0.6rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--emerald-light);
  font-weight: bold;
}

.service-description {
  color: var(--light-gray);
  font-size: 0.95rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--dark-navy) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials .section-header h2 {
  color: var(--white);
}

.testimonials .section-header p {
  color: var(--light-gray);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(248, 250, 252, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 2rem;
  color: var(--white);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  border-color: var(--emerald);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(44, 15, 39, 0.15);
}

.star-rating {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.testimonial-quote {
  font-style: italic;
  font-size: 1rem;
  color: var(--light-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.author-name {
  font-weight: 600;
  color: var(--white);
}

.author-profession {
  font-size: 0.85rem;
  color: var(--emerald-light);
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: 6rem 2rem;
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
  color: var(--white);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #1a2e5a 0%, var(--navy) 100%);
}

.faq-question.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--emerald) 100%);
  color: var(--navy);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-gray);
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.5rem;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-section .section-header h2 {
  color: var(--white);
}

.contact-section .section-header p {
  color: var(--light-gray);
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(248, 250, 252, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 3rem;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  color: var(--white);
  margin-bottom: 0.8rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--emerald);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(44, 15, 39, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--emerald) 100%);
  color: var(--navy);
  padding: 1.2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.success-message {
  display: none;
  background: rgba(44, 15, 39, 0.1);
  border: 1px solid var(--emerald);
  color: var(--emerald-light);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 1.5rem;
  animation: slideInUp 0.5s ease-out;
}

.success-message.show {
  display: block;
}

/* ===== LEGAL & NEWSLETTER ===== */
.legal-newsletter {
  padding: 6rem 2rem;
  background: var(--white);
}

.legal-newsletter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.legal-module {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
  border-radius: 12px;
  padding: 2.5rem;
  color: var(--white);
}

.legal-module h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.legal-module p {
  color: var(--light-gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

.newsletter-module {
  background: linear-gradient(135deg, var(--emerald) 0%, #059669 100%);
  border-radius: 12px;
  padding: 2.5rem;
  color: var(--white);
}

.newsletter-module h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.newsletter-form input,
.newsletter-form select {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus,
.newsletter-form select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.25);
}

.newsletter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.newsletter-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.newsletter-checkbox label {
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--white);
}

.newsletter-submit {
  background: var(--white);
  color: var(--emerald);
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.newsletter-success {
  display: none;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  animation: slideInUp 0.5s ease-out;
}

.newsletter-success.show {
  display: block;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark-navy);
  color: var(--light-gray);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-section p {
  line-height: 1.8;
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--emerald);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--emerald) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
  font-size: 0.85rem;
}

/* ===== SCROLL REVEAL ANIMATION ===== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.scroll-reveal.visible {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
  }

  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8rem;
  }

  .header-container {
    position: relative;
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    position: static;
    transform: none;
    margin-bottom: 1rem;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .trust-badges {
    gap: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .legal-newsletter-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== MODAL STYLES ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fff;
  margin: 8% auto;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  position: relative;
  overflow-y: auto;
  max-height: 80vh;
  animation: fadeIn 0.3s ease-in-out;
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
  color: #999;
}

.close:hover {
  color: #000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h3 {
  margin-top: 0;
  color: #222;
}

h4 {
  margin-bottom: 5px;
  color: #333;
}

p {
  color: #555;
  line-height: 1.6;
}