.accueil-faq-container {
    width: 100%;
    height: fit-content;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background-color: #09166d;
}


.accueil-faq-title {
    font-size: 45px;
    font-weight: bold;
    margin: auto;
    width: fit-content;
    padding: 1rem;
    color: whitesmoke;
    border-bottom: 4px solid whitesmoke;
}

.faq {
    width: 50%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

details {
    color: whitesmoke;
    border: 1px solid whitesmoke;
    padding: 1rem;
    font-weight: normal;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
}

summary {
    font-weight: bold;
}



/* version mobile */

@media (max-width: 862px) {

.accueil-faq-title {
    font-size: 35px;
    text-align: center;
  
}

.faq {
    width: 80%;

}


 }