.faq-container {
    display: flex;
}
.questions {
    flex: 1;
    padding: 20px;
    
}
.reponses {
    flex: 2;
    padding: 20px;
}
.question {
    cursor: pointer;
    margin-bottom: 20px;
    border-radius: 20px;
    border: 2px solid #eeeeeec1;
    box-shadow: 5px 10px 7px #0000000c;
    padding: 20px;
    background-color: #e2edfa;
}
.reponse {
    display: none;
}

.question p {
    font-size: 18px;
}

.reponse p {
    font-size: 16px;
}

.reponse h2 {
    font-size: 20px;
    font-weight: bold;
}