/* =====================
   Style pour la page FAQ
===================== */

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #e0dcd5;
}

.faq-question {
  background: none;
  border: none;
  font-size: 1.4em;
  color: #623e2a;
  text-align: left;
  width: 100%;
  cursor: pointer;
  padding: 15px 0;
  transition: color 0.3s ease;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Montserrat-Regular', sans-serif;
}

.faq-question:hover {
  color: #b76e79;
  transition: color 0.5s ease;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  padding-bottom: 0;
  font-family: 'Lato-Regular', sans-serif;
}

.faq-question.active + .faq-answer {
  padding-bottom: 15px;
}
