/* FAQ Accordéon moderne */
.faq {
    background: #f5fafd;
    padding: 90px 0 90px 0;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(0,183,206,0.07);
    margin-bottom: 18px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-question {
    cursor: pointer;
    font-size: 1.16rem;
    font-weight: 700;
    color: #00b7ce;
    padding: 22px 32px 22px 32px;
    background: #e8f8fb;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}
.faq-question::after {
    content: '\25BC';
    font-size: 1.1em;
    color: #00b7ce;
    margin-left: 12px;
    transition: transform 0.3s;
}
.faq-item.active .faq-question {
    background: #00b7ce;
    color: #fff;
}
.faq-item.active .faq-question::after {
    transform: rotate(180deg);
    color: #fff;
}
.faq-answer {
    font-size: 1.08rem;
    color: #222;
    background: #fff;
    padding: 0 32px 22px 32px;
    display: none;
    animation: fadeIn 0.5s;
}
.faq-item.active .faq-answer {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@media (max-width: 600px) {
  .faq-container {
    padding: 0 4px;
  }
  .faq-question, .faq-answer {
    padding-left: 16px;
    padding-right: 16px;
  }
}
