body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #F2D7B6;
}


.faq-main {
  padding: 40px 20px;
  max-width: 960px;
  margin: auto;
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.faq-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.accordion {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  perspective: 1000px;
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
  background-color: #FDFAF6;
}

.accordion-btn::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion.active .accordion-btn::after {
  content: "−";
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion.active .accordion-content {
  max-height: 500px; /* ou plus selon ton contenu moyen */
  padding: 16px 20px;
}

.more-btn {
  margin: 40px auto;
  display: block;
  padding: 12px 24px;
  background: #401201;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}


.popup-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.popup-overlay.show .popup-content {
  transform: translateY(0);
  opacity: 1;
}

.popup-content h2 {
  color: #6a3a18;
  margin-bottom: 10px;
}

.popup-content p {
  color: #333;
  font-size: 15px;
}

.popup-content .close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
}

.popup-content .close:hover {
  color: #000;
}
