/* ===== FAQ PAGE ===== */

/* Hero */
.faq-hero {
  padding: 140px 0 60px;
  background: #F8F9FA;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.faq-hero > .container {
  position: relative;
  z-index: 1;
}
.faq-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1D3557;
  margin-bottom: 12px;
}
.faq-hero-sub {
  font-size: 1.15rem;
  color: #777;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0 80px;
  background: #F8F9FA;
  position: relative;
  overflow: hidden;
}
.faq-section > .container {
  position: relative;
  z-index: 1;
}

/* Catégories */
.faq-category {
  margin-bottom: 48px;
}
.faq-category:last-child {
  margin-bottom: 0;
}
.faq-category-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #E63946;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(230, 57, 70, 0.15);
}

/* FAQ list — surcharge pour la page dédiée */
.faq-section .faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* CTA */
.faq-cta {
  padding: 80px 0;
  background: linear-gradient(160deg, #1D3557, #2B4A7A);
  text-align: center;
}
.faq-cta h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.faq-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* Lien dans les réponses */
.faq-section .faq-answer a {
  color: #E63946;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-section .faq-answer a:hover {
  color: #c62e3a;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-hero {
    padding: 120px 0 40px;
  }
  .faq-hero-title {
    font-size: 2rem;
  }
  .faq-section {
    padding: 40px 0 60px;
  }
  .faq-category-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .faq-hero {
    padding: 100px 0 32px;
  }
  .faq-hero-title {
    font-size: 1.7rem;
  }
  .faq-hero-sub {
    font-size: 1rem;
  }
  .faq-cta h2 {
    font-size: 1.5rem;
  }
}
