@charset "UTF-8";
/* CSS Document */

/* ===== FAQ DESIGN PRO ===== */

.faq-section {
  margin: 40px 0;
}

/* TITRE */
.faq-section h2 {
  font-size: 28px;
  margin-bottom: 25px;
  text-align: center;
}

/* ITEM */
.faq-item {
  margin-bottom: 15px;
}

/* CARD */
.faq-item details {
  background: #ffffff;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

/* HOVER */
.faq-item details:hover {
  transform: translateY(-2px);
}

/* QUESTION */
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

/* SUPPRIME FLÈCHE NATIVE */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* ICONE + */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  transition: 0.3s;
}

/* ICONE - */
.faq-item details[open] summary::after {
  content: "−";
}

/* CONTENU */
.faq-content {
  margin-top: 15px;
  line-height: 1.7;
  color: #555;
}

/* IMAGES */
.faq-content img {
  width: 100%;
  border-radius: 8px;
  margin-top: 10px;
}


.faq-images {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.faq-images img {
  width: 33.33%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .faq-images {
    flex-direction: column;
  }

  .faq-images img {
    width: 100%;
  }
}