
h2.title-section-faq {
  font-family: 'Inter bold';
  font-size: clamp(25px,2.083vw,30px);
  color: var(--dark);
  text-align: center;
}

.container-data-faq {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.liste-faq {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 20px;
  align-items: flex-start; 
  justify-content: center;
  margin-bottom: clamp(65px,5.139vw,74px);
}

.faq-content {
  flex: 0 0 calc(50% - 20px);
  min-width: 0; 
  border-top: 2px solid #E3B6A0;
  box-sizing: border-box;
  position: relative; 
}

.faq-question {
  position: relative;
  padding-right: 25px;
  cursor: pointer;
  min-height: clamp(50px,5.556vw,80px);
  display: flex;
  align-items: center;
}

.liste-faq .faq-column {
  width: 100%;
}

.btn-open-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  font-size: 12px;
}

.faq-content .btn-open-close svg {
  width: clamp(8px,1.111vw,16px);
  height: clamp(8px,1.111vw,16px);
  transition: transform 0.6s ease;

}



.faq-reponse {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease, opacity 0.8s ease;
  padding: 0;
  opacity: 0;
}

.faq-content .faq-question.active .btn-open-close svg {
   transform:  rotate(-180deg); 
}

.faq-question.active + .faq-reponse {
  opacity: 1;
}

.faq-content.active .faq-reponse {
  height: auto; 
  padding: 10px 0;
  
}

.faq-question, .faq-reponse p {
  font-family: 'Inter regular';
  font-size: clamp(13px,1.111vw,16px)
}

@media screen and (min-width:768px){
  .liste-faq .faq-column {
    width: calc(50% - 10px);
  }
  .container-data-faq {
    gap: 20px;
  } 
}