.faq-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background-color: #212529;

    /* Dark background */
    border-radius: 8px;
    padding: 15px;
    border: 2px solid #495057;
    font-family: 'OpenSans', sans-serif;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 10px;
    background-color: #2C3034;

    /* Darker background for questions */
    color: white;
    font-weight: normal;

    /* White text for questions */
    border: none;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    display: none;
    padding: 10px;
    background-color: #black;

    /* Lighter gray for the answers */
    color: #F5F5F5;
    font-size: 12px;

    /* border-radius: 8px; */
    padding: 15px;
    border: 2px solid #495057;

    /* Bootstrap's border-dark color */
}

.faq-question::after {
    content: '▼';
    font-size: 16px;
    transition: transform 0.2s;
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-question.active + .faq-answer {
    display: block;
}