#faq h1 {
    background-position-y: 23px;
    background-image: url(../images/nuage.svg);
    background-repeat: no-repeat;
    background-position-x: center;
    background-size: 100px;
}

#faq {
    margin: 0 30px 30px 30px;
}

h2 {
    font-family: var(--font-main);
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
}

h3 {
    font-family: var(--font-main);
    font-size: 17px;
    margin-bottom: 15px;
}

.container-question {
    border: 1px solid var(--bleu);
    border-radius: 11px;

}

.question-categorie {
    margin-bottom: 20px;
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.question {
    display: flex;
    justify-content: center;
    background-color: var(--bleu);
    padding: 5px;
    font-weight: 500;
    text-align: center;
    align-items: center;
    border-radius: 10px;
}

.question img {
    width: 30px;
    transition: 0.3s ease-in;
}

.reponse {
    padding: 10px;
    max-height: 500px; /* Ajuste selon le contenu */
    opacity: 1;
    transition: all 0.3s ease-in;
}

.hidden-reponse {
    padding: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease-in;
}

.rotate {
    transform: rotate(270deg);
    transition: 0.3s ease-in;
}

@media (min-width: 481px) {
    #faq {
        margin: 0 7%;    
    }
}