/* --- LE-PAGE CONTENT STYLE FOR FAQ --- */

.faq-page-wrapper {
  padding: 80px 0 120px 0;
  background-color: var(--Contexte);
}

.faq-layout-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* Même rapport asymétrique moderne que les pages juridiques */
  gap: 60px;
  align-items: start;
}

/* Titre principal à gauche */
.faq-page-header .headings-h1 {
  font-family: var(--font-family-poppins);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.15;
  color: var(--Texte);
  position: sticky;
  top: 120px;
}

/* Pile de contenu à droite */
.faq-content-stack {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.faq-cards-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Structure des cartes FAQ */
.faq-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0px 24px 32px -14px rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 30px 40px -12px rgba(0, 0, 0, 0.08);
}

.faq-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-question {
  font-family: var(--font-family-inter);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: rgba(27, 17, 57, 0.9); /* Préservation des couleurs précises Figma */
}

.faq-answer {
  font-family: var(--font-family-inter);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(54, 48, 73, 0.8);
}

/* Pastille/Icône à droite du bloc */
.faq-icon-wrapper {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--Primaire);
  opacity: 0.85;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-toggle-icon {
  width: 12px;
  height: 2px;
  background-color: var(--Contexte);
  display: inline-block;
  position: relative;
}

/* Zone bloc d'appel bas de page */
.faq-contact-box {
  background-color: var(--Secondaire);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.faq-contact-title {
  font-family: var(--font-family-poppins);
  font-weight: 700;
  font-size: 28px;
  color: var(--Contexte);
}

.faq-actions-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.faq-action-btn {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

/* Adaptation spécifique des boutons internes */
.faq-actions-row .btn-primary {
  background-color: var(--Primaire);
  color: var(--Accent);
}

.faq-actions-row .btn-secondary {
  background-color: var(--Contexte);
  color: var(--Texte);
}

.faq-action-btn:active {
  transform: scale(0.98);
}

/* --- RESPONSIVE ADAPTATION --- */

@media (max-width: 992px) {
  .faq-layout-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .faq-page-header .headings-h1 {
    font-size: 42px;
    position: static;
  }
}

@media (max-width: 576px) {
  .faq-page-wrapper {
    padding: 40px 0 80px 0;
  }

  .faq-card {
    padding: 24px;
    gap: 16px;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-contact-box {
    padding: 24px 16px;
  }

  .faq-contact-title {
    font-size: 22px;
  }

  .faq-actions-row {
    flex-direction: column;
  }
  
  .faq-action-btn {
    width: 100%;
    text-align: center;
  }
}