.FAQ {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.FAQ h1{
    text-align: center;
}

.FAQ p.description{
    text-align: center;
    max-width: 50rem;
    margin-top: 1rem;
    color: var(--couleur-2);
    font-family: var(--police-Quicksand-Regular);
}


.FAQ .questions{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    margin-top: 3rem;
}

.FAQ .questions .left,
.FAQ .questions .right{
    width: calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.FAQ .questions .question{
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    width: 100%;
    max-width: 50rem;
    height: fit-content;
}

.FAQ .questions .question .top{
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    cursor: pointer;
}

.FAQ .questions .question .top p{
    font-family: var(--police-Quicksand-Bold);
    color: var(--couleur-10);
}

.FAQ .questions .question.violet-clair .top p{
    color: var(--couleur-11) !important;
}


.FAQ .questions .question .bottom{
    height: 0;
    overflow: hidden;
    transition: height 2s, padding .1s;
    padding: 0;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--couleur-10);
}

.FAQ .questions .question.violet-clair .bottom{
    border-bottom: 2px solid var(--couleur-11) !important;
}

.FAQ .questions .question .bottom.active{
    height: fit-content;
    padding: 0 0 1rem 0;
}

.FAQ .questions .question .bottom p{
    color: var(--couleur-2);
    font-family: var(--police-Quicksand-Regular);
}


@media screen and (max-width: 800px) {
    
    .FAQ .questions .left,
    .FAQ .questions .right{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .FAQ .questions{
        flex-direction: column;
    }
    .FAQ .questions .question{
        width: 100%;
    }

    .FAQ .questions .question .top p{
        font-size: .8rem;
    }

    .FAQ .questions .question .bottom p{
        font-size: .7rem;
    }
    
}


@media screen and (max-width: 500px) {
    .FAQ{
        padding: 0 1.5rem;
        padding-top: clamp(50px, 10vw, 125px);
        padding-bottom: clamp(50px, 10vw, 125px);
    }

}