* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FFFFFF;
  color: #1A1A1A;
  line-height: 1.6;
}


.back-button {
  position: absolute;
  top: 32px; /* Aligné sur le padding de votre header */
  left: 24px; /* Aligné sur le padding de votre container */
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #FAF8F5; /* Votre couleur de fond secondaire */
  color: #4A5D48; /* Votre couleur verte principale */
  border: 1px solid rgba(107, 132, 104, 0.3);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-button:hover {
  background-color: #4A5D48;
  color: #FAF8F5;
  border-color: #4A5D48;
}

.back-button .arrow {
  font-size: 18px;
  line-height: 1;
}

/* Ajustement pour mobile */
@media (max-width: 768px) {
  .back-button {
    top: 16px;
    left: 16px;
    padding: 8px 14px;
    font-size: 12px;
  }
}



.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  background-color: transparent; 
  width: 100%;
  padding: 32px 0; /* On garde le padding vertical, mais on met 0 sur les côtés */

}

.header .container {
    display: flex;
    justify-content: center; /* Centre le logo horizontalement */
    background: transparent; /* Assure que le fond du container ne bloque rien */
    max-width: 1280px;
    margin: 0 auto;
}

.logo {
  height: 500px;
  width: auto;
  background-color: transparent;
}

/* Hero Section */

.offerings {
  margin-top: -150px;

  }



.about {

  margin-top: -150px;
}






.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  margin-top: -450px;
  padding-top: 180px;
}

.hero-content {
  text-align: center;
  
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 12vw, 100px);
  margin-bottom: 100px;
  color: #1A1A1A;
  letter-spacing: -2px;
  font-weight: 400;
  
}

.hero-subtitle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}

.divider {
  height: 1px;
  width: 48px;
  background-color: #B8941E;
}

.hero-subtitle {
  font-size: 14px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: #4A5D48;
  font-weight: 300;
  text-align: center;
}

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 6vw, 56px);
  margin-bottom: 32px;
  color: #1A1A1A;
  font-weight: 300;
  line-height: 1.2;
}

.hero-description {
  font-size: 18px;
  color: #4A5D48;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.8;
}
/* hero pour la page individuel */
.individuel .hero-title {
  font-size: 40px; 
  text-align: center;
  
}

.individuel {

  margin-top: -150px;
}


/* hero pour la page feminin */
.feminin .hero-title {
  font-size: 40px;
  text-align: center;
}

/* hero pour la page nova */
.nova .hero-title {
  font-size: 40px;
  text-align: center;
}

/* hero pour la page reservation */
.reservation .hero-title {
  font-size: 40px;
  text-align: center;
}






.button-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .button-group {
    flex-direction: row;
  }
}

.btn {
  padding: 16px 40px;
  font-size: 14px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  min-width: 240px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: #4A5D48;
  color: #FAF8F5;
  display: block;
  width: fit-content;
  margin: 0 auto;
  width: auto;
}

.btn-primary:hover {
  background-color: #6B8468;
}

.btn-secondary {
  border: 1px solid #4A5D48;
  color: #4A5D48;
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: #4A5D48;
  color: #FAF8F5;
}
/* enlever le bleu apres cliquer le lien */
a, a:visited, a:hover, a:active {
  text-decoration: none;
  color: inherit;
}

/* About Section */
.about {
  padding: 96px 24px;
  background-color: #FFFFFF;
}

.divider-center {
  height: 1px;
  width: 96px;
  background-color: #B8941E;
  margin: 0 auto 64px auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 48px;
  color: #1A1A1A;
  text-align: center;
}

.about-text {
  font-size: 18px;
  color: #4A5D48;
  text-align: justify;
  max-width: 800px;
  margin: 0 auto 64px auto;
  font-weight: 300;
  line-height: 1.8;
  padding: 0 24px;
}

.about .divider-center:last-of-type {
  margin-bottom: 0;
  margin-top: 64px;
}

/* Offerings Section */
.offerings {
  padding: 96px 24px 10px 24px;
  background-color: #FAF8F5;
  margin-top: -150px;
}

.offerings .section-title {
  margin-bottom: 80px;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .offerings-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.offering-card {
  text-align: center;
  border: 1px solid rgba(107, 132, 104, 0.3);
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.5);
  min-height: 100%;
  transition: border-color 0.3s ease;
}

.offering-card:hover {
  border-color: #6B8468;
}

.offering-card .divider-center {
  margin-bottom: 32px;
}

.offering-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 24px;
  color: #1A1A1A;
}

.offering-description {
  font-size: 16px;
  color: #4A5D48;
  font-weight: 300;
  line-height: 1.8;
}

.offering-link{
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Contact Section */
.contact {
  padding: 10px 24px 96px 24px;
  background-color: #FFFFFF;
}

.contact .divider-center:first-of-type {
  margin-bottom: 64px;
}

.contact-description {
  font-size: 18px;
  color: #4A5D48;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px auto;
  font-weight: 300;
  line-height: 1.8;
}

.contact .divider-center:last-of-type {
  margin-top: 64px;
}

/* Footer */
.footer {
  padding: 48px 24px;
  background-color: #FAF8F5;
}

.footer-text {
  font-size: 14px;
  color: #4A5D48;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.8px;
}

/* Responsive Design */
@media (max-width: 768px) {

.hero, 
  .offerings, 
  .about, 
  .individuel {
    margin-top: 0;
  }

  .hero {
    padding-top: 20px; /* Rapproche le texte du logo sur mobile */
  }


  .hero-title {
    font-size: 48px;
  }

  .hero-heading {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .section-title {
    font-size: 32px;
  }

  .about-text,
  .contact-description {
    font-size: 16px;
  }

  .offerings-grid {
    gap: 32px;
  }

  .offering-card {
    padding: 32px;
  }

  .button-group {
    gap: 16px;
  }

  .btn {
    min-width: auto;
    width: 100%;
    padding: 14px 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

 .hero {
    padding: 32px 16px;
    padding-top: 20px; 
    min-height: auto;  
  }

  .hero-title {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .hero-subtitle-wrapper {
    gap: 12px;
    margin-bottom: 32px;
  }

  .divider {
    width: 32px;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .hero-heading {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .hero-description {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .about,
  .contact {
    padding: 64px 16px;
  }

  .offerings {
    padding: 64px 16px;
  }

  .divider-center {
    width: 64px;
    margin-bottom: 48px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .about-text {
    margin-bottom: 48px;
    font-size: 15px;
  }

  .offerings-grid {
    gap: 24px;
  }

  .offering-card {
    padding: 24px;
  }

  .offering-title {
    font-size: 20px;
  }

  .offering-description {
    font-size: 14px;
  }

  .logo {
    height: 120px;
    transform: scale(1.8);
  }
}


/* =========================
   PAGE A PROPOS
   Ne touche que la mise en page photo + texte
   ========================= */

.about-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 56px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.about-photo {
  flex: 0 0 360px;
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.about-bio {
  flex: 1;
  min-width: 0;
}

.about-bio .about-text {
  max-width: 100%;
  margin: 0;
  padding: 0;
  text-align: justify;
  text-justify: inter-word;
}

/* Responsive */
@media (max-width: 900px) {
  .about-layout {
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
  }

  .about-photo {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .about-bio {
    width: 100%;
  }
}

.about-caption {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 16px;
  color: #5f6f5f;
  text-align: left;
}

/* =========================
   PAGE NOVA (SCOPÉE)
   Ne touche que: <section class="nova">...</section>
   ========================= */

.nova .intro-text {
  font-size: 1.125rem;
  color: #4A5D48;
  max-width: 42rem;
  margin: 3rem auto;
  line-height: 1.75;
  font-weight: 300;
  text-align: center;
}

.nova .cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 4rem 0;
}

@media (min-width: 768px) {
  .nova .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .nova .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.nova .card {
  position: relative;
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.125rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.nova .card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.nova .card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.nova .card-accent.red {
  background: linear-gradient(to right, #ef4444, #f87171);
}

.nova .card-accent.blue {
  background: linear-gradient(to right, #3b82f6, #60a5fa);
}

.nova .card-accent.green {
  background: linear-gradient(to right, #10b981, #34d399);
}

.nova .card-accent.yellow {
  background: linear-gradient(to right, #fbbf24, #fcd34d);
}

.nova .card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.nova .card-emoji {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.nova .card-color {
  font-size: 0.875rem;
  font-weight: 600;
  color: #B8941E;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.nova .card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #1A1A1A;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.nova .card-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.nova .card-description {
  color: #4A5D48;
  line-height: 1.75;
  font-weight: 300;
  flex-grow: 1;
}

.nova .nova-footer {
  max-width: 48rem;
  margin: 4rem auto;
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid #e5e7eb;
}

.nova .footer-text {
  font-size: 1.125rem;
  color: #4A5D48;
  line-height: 1.75;
  font-weight: 300;
}

.nova .footer-text strong {
  font-weight: 500;
  color: #1A1A1A;
}

/* Alignement des posts Facebook */
.fb-container {
  display: flex;
  justify-content: center; /* Centre les posts horizontalement */
  gap: 20px;               /* Espace entre les deux publications */
  flex-wrap: wrap;         /* Permet de revenir à la ligne sur petit écran */
  margin-top: 4rem;
}

/* Ajustement pour s'assurer que les posts ne dépassent pas sur petit écran */
.fb-container .fb-post {
  flex: 0 1 auto;
  min-width: 320px;        /* Largeur minimum pour rester lisible */
}

/* On retire la marge auto que vous aviez sur .nova .fb-post pour éviter les conflits */
.nova .fb-post {
  margin-top: 0; 
}

/* =========================
   PAGE LEADERSHIP FÉMININ (SCOPÉE)
   Ne touche que: <section class="feminin">...</section>
   ========================= */

/* Hero Section */
.feminin-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feminin-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

.feminin-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.feminin-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 0 24px;
  max-width: 960px;
}

.feminin-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 8vw, 96px);
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.feminin-hero-subtitle {
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

/* Introduction Section */
.feminin-intro {
  padding: 96px 24px;
}

.feminin-intro-text {
  max-width: 768px;
  margin: 0 auto;
}

.feminin-intro-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #4A5D48;
  margin-bottom: 32px;
  font-weight: 300;
}

.feminin-intro-text .feminin-highlight {
  font-weight: 500;
  color: #1A1A1A;
}

/* Challenges Section */
.feminin-challenges {
  padding: 96px 24px;
  background-color: #FFFFFF;
}

.feminin-challenges .section-title {
  margin-bottom: 80px;
}

.feminin-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .feminin-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

.feminin-card {
  background-color: #FFFEF7;
  padding: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  transition: border-color 0.3s ease;
}

.feminin-card:hover {
  border-color: #8B9D83;
}

.feminin-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(139, 157, 131, 0.1);
  color: #8B9D83;
  margin-bottom: 24px;
}

.feminin-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 16px;
  color: #1A1A1A;
}

.feminin-card-description {
  font-size: 16px;
  color: #4A5D48;
  line-height: 1.6;
  font-weight: 300;
}

/* Benefits Section */
.feminin-benefits {
  padding: 96px 24px;
  background-color: #FFFEF7;
}

.feminin-benefits .section-title {
  margin-bottom: 64px;
}

.feminin-benefits-list {
  max-width: 768px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.feminin-benefits-list li {
  display: flex;
  align-items: start;
  gap: 16px;
  font-size: 18px;
  color: #4A5D48;
  margin-bottom: 24px;
  line-height: 1.6;
  font-weight: 300;
}

.feminin-benefits-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #C9A961;
  margin-top: 12px;
  flex-shrink: 0;
}

/* Approach Section */
.feminin-approach {
  padding: 96px 24px;
  background-color: #FFFFFF;
}

.feminin-approach .section-title {
  margin-bottom: 48px;
}

.feminin-approach-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 36px);
  text-align: center;
  margin-bottom: 32px;
  color: #1A1A1A;
  font-weight: 400;
  font-style: italic;
}

.feminin-approach-text {
  max-width: 768px;
  margin: 0 auto;
}

.feminin-approach-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #4A5D48;
  margin-bottom: 24px;
  font-weight: 300;
}

.feminin-approach-text strong {
  font-weight: 500;
  color: #1A1A1A;
}

/* Call to Action Section */
.feminin-cta {
  padding: 128px 24px;
  background-color: #FFFEF7;
  text-align: center;
}

.feminin-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 32px;
  color: #1A1A1A;
}

.feminin-cta-text {
  font-size: 20px;
  color: #4A5D48;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
  font-weight: 300;
}

.feminin-cta .btn {
  padding: 16px 48px;
  font-size: 16px;
  letter-spacing: 1.2px;
  background-color: #8B9D83;
  color: white;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.feminin-cta .btn:hover {
  background-color: #7a8a72;
}

/* Responsive */
@media (max-width: 768px) {
  .feminin-intro,
  .feminin-challenges,
  .feminin-benefits,
  .feminin-approach {
    padding: 64px 16px;
  }

  .feminin-cta {
    padding: 80px 16px;
  }

  .feminin-cards-grid {
    gap: 24px;
  }

  .feminin-card {
    padding: 32px;
  }
}

/* =========================
   PAGE COACHING INDIVIDUEL (SCOPÉE)
   Ne touche que: <section class="individuel">...</section>
   ========================= */

.individuel {
  background-color: #FAF8F5;
  min-height: 100vh;
  padding: 48px 24px 96px;
}

.individuel .hero-title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 24px;
}

.individuel .hero-subtitle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 80px;
}

.individuel .coaching-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.individuel .coaching-photo-col {
  flex: 0 0 420px;
}

.individuel .coaching-photo-wrapper {
  position: relative;
}

.individuel .coaching-photo-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.individuel .coaching-content-col {
  flex: 1;
  min-width: 0;
}

.individuel .coaching-intro {
  margin-bottom: 48px;
}

.individuel .coaching-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #4A5D48;
  margin-bottom: 24px;
  font-weight: 300;
  text-align: justify;
  text-justify: inter-word;
}

.individuel .coaching-intro p:last-child {
  margin-bottom: 0;
}

.individuel .coaching-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.individuel .coaching-card {
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(107, 132, 104, 0.25);
  padding: 32px;
  transition: all 0.3s ease;
}

.individuel .coaching-card:hover {
  border-color: #6B8468;
  background-color: rgba(255, 255, 255, 0.9);
}

.individuel .coaching-card .divider-center {
  margin-bottom: 20px;
  width: 48px;
  margin-left: 0;
}

.individuel .coaching-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #1A1A1A;
  margin-bottom: 12px;
  line-height: 1.3;
}

.individuel .coaching-card-description {
  font-size: 15px;
  color: #4A5D48;
  line-height: 1.6;
  font-weight: 300;
}

.individuel .coaching-quote-box {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(184, 148, 30, 0.2);
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}

.individuel .coaching-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 28px);
  color: #1A1A1A;
  line-height: 1.5;
  font-style: italic;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 1024px) {
  .individuel .coaching-layout {
    flex-direction: column;
    gap: 48px;
  }

  .individuel .coaching-photo-col {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .individuel .coaching-content-col {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .individuel {
    padding: 32px 16px 64px;
  }

  .individuel .hero-subtitle-wrapper {
    margin-bottom: 56px;
  }

  .individuel .coaching-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .individuel .coaching-card {
    padding: 24px;
  }

  .individuel .coaching-quote-box {
    padding: 32px 24px;
  }

  .individuel .coaching-intro p {
    font-size: 16px;
  }
}

/* Rend le symbole & plus classique dans les titres Nova */
.normal-amp {
  font-family: 'Inter', sans-serif;
}

/* =========================
   PAGE FACEBOOK (RÉFLEXIONS)
   ========================= */

.facebook-section {
  padding: 48px 24px 96px;
  background-color: #FAF8F5; /* La même couleur douce que sur vos autres pages */
  min-height: 100vh;
}

.facebook-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  flex: 1; /* Permet aux colonnes d'avoir la même taille */
  min-width: 320px;
  max-width: 500px; /* Aligné sur la largeur de vos posts Facebook */
}

.facebook-post-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #1A1A1A;
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.4;
  font-weight: 500;
}

.fb-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  justify-items: center;
}

/* On force 1 seule colonne sur les petits écrans */
@media (max-width: 768px) {
  .fb-container {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
}


/* =========================
   SECTION AVIS / TESTIMONIALS
   ========================= */
.testimonials {
  padding: 96px 24px;
  background-color: #FAF8F5; /* Même fond doux que la section offres */
}

.testimonials .divider-center {
  margin-bottom: 32px;
}

.testimonials .section-title {
  margin-bottom: 64px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 40px;
  border: 1px solid rgba(107, 132, 104, 0.2);
  border-radius: 4px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: #8B9D83;
}

.quote-icon {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: #C9A961; /* Votre couleur dorée/moutarde */
  line-height: 0;
  margin-top: 30px;
  margin-bottom: 20px;
  opacity: 0.4;
}

.testimonial-text {
  font-size: 16px;
  color: #4A5D48; /* Votre vert foncé */
  font-style: italic;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 32px;
  flex-grow: 1; /* Pousse l'auteur vers le bas si les textes n'ont pas la même taille */
}

.testimonial-author {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(107, 132, 104, 0.1);
  padding-top: 24px;
}

.author-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.author-role {
  font-size: 14px;
  color: #8B9D83;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Ajustement Mobile pour les avis */
@media (max-width: 768px) {
  .testimonials {
    padding: 64px 16px;
  }
  .testimonials-grid {
    gap: 24px;
  }
  .testimonial-card {
    padding: 32px 24px;
  }
}


/* =========================
   MISE EN PAGE IMAGE NOVA
   ========================= */
.nova-layout {
  display: flex;
  align-items: center; /* Centre verticalement le texte avec l'image */
  gap: 64px; /* Espace entre le texte et l'image */
  margin-top: 48px;
  margin-bottom: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.nova-text-content {
  flex: 1; /* Le texte prend l'espace restant */
}

.nova-photo {
  flex: 0 0 450px; /* Largeur fixe de l'image sur ordinateur */
}

.nova-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px; /* Bords très légèrement arrondis */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); /* Ombre douce élégante */
}

/* Rendre le tout parfait sur téléphone et tablette */
@media (max-width: 900px) {
  .nova-layout {
    flex-direction: column; /* Empile le texte au-dessus de l'image */
    gap: 48px;
    margin-top: 24px;
    margin-bottom: 48px;
  }
  
  .nova-text-content .hero-title,
  .nova-text-content .intro-text {
    text-align: center !important; /* On recentre le texte sur mobile */
  }

  .nova-text-content .intro-text {
    margin: 0 auto !important;
  }

  .nova-photo {
    width: 100%;
    max-width: 500px; /* Évite que l'image soit trop géante sur tablette */
    margin: 0 auto;
  }
}

/* =========================
   MISE EN PAGE IMAGE FEMININ (Texte Gauche / Image Droite)
   ========================= */
.feminin-layout {
  display: flex;
  align-items: center; 
  gap: 64px;
  margin-top: 100px; /* Espace avec le haut de la page */
  margin-bottom: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.feminin-text-content {
  flex: 1; /* Le texte prend l'espace disponible */
}

.feminin-photo {
  flex: 0 0 420px; /* Largeur fixe de l'image sur l'ordinateur */
}

.feminin-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Ombre douce */
}

/* Ajustements pour les téléphones et tablettes */
@media (max-width: 900px) {
  .feminin-layout {
    flex-direction: column; /* Place l'image sous le texte sur mobile */
    gap: 48px;
    margin-top: 80px;
  }
  
  .feminin-text-content .hero-title,
  .feminin-text-content .intro-text {
    text-align: center !important; /* On centre le texte sur mobile */
  }

  .feminin-photo {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}

/* On cache l'ancien CSS de la bannière sombre s'il en reste */
.feminin-hero, .feminin-intro {
  display: none !important;
}
