.containerFAQ {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    padding-bottom: 100px;
}
h1 {
    text-align: center;
    margin-bottom: 20px;
}
.faq {
    margin-bottom: 10px;
}
.faq-question {
    cursor: pointer;
    background: #42445A;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 5px 0;
    transition: background 0.3s;
    display: flex;
    justify-content: space-between; /* Ensures items are spaced out */
    align-items: center; /* Vertically centers items */
}

.faq-question-arrow {
    font-size: 12px;
    color: white; /* Change color as needed */
    margin-left: auto; /* Pushes the arrow to the far right */
}

.faq-question:hover {
    background: #5c5f79;
}
.faq-answer {
    display: none;
    padding: 10px 15px;
    background: #f1f1f1;
    border-left: 4px solid #42445A;
    margin: 5px 0;
    border-radius: 5px;
}

.faq-answer ul {
    padding-left: 20px;
}