.faq-item {
  margin-bottom: 48px;
  position: relative;
}

.faq-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 100%;
  height: 1px;
  border-radius: 9999px;
  background: #f3f4f6;
}

.faq-question {
  padding: 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  color: #3f3f46;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  padding-right: 48px;
}

.faq-question::before {
  content: "/";
  color: var(--Common-Primary-brand-Hight, #bb2332);
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-right: 2px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-image: var(--chevron-url);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  filter: invert(13%) sepia(95%) saturate(2878%) hue-rotate(346deg)
    brightness(104%) contrast(97%);
}

.faq-item[open] .faq-question::after {
  transform: translateY(-50%) rotate(-90deg) !important;
}

.faq-answer {
  padding: 1rem 0;
  color: #71717a;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}

/* Animation pour l'ouverture/fermeture */
.faq-item[open] .faq-answer {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
