/*-------------*/
/* FAQ SECTION */
/*-------------*/

/*--- General ---*/
.faq-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq-headline {
    text-align: center;
    margin: 0;
    padding: 0 2rem 4rem 2rem;
}

.faq-question-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
}

.faq-question {
    background-color: var(--lightBG);
    border-radius: 1rem;
    padding: 1rem;
    width: 100%;
    box-shadow: 0 0 0.5rem 0.1rem var(--primaryTheme);
}

.faq-question-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.faq-question-question {
    margin: 0;
}

.faq-question-answer {
    text-align: left;
}

.faq-question-answer-expanded {
    display: block;
}

/*--- Mobile ---*/
@media only screen and (max-width: 768.99px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-question-container {
        width: 80%;
    }
}

/*--- Desktop ---*/
@media only screen and (min-width: 769px) {
    .faq-section {
        padding: 5rem;
    }

    .faq-question-container {
        width: 100%;
    }
}

/*----------------*/
/* ?????? SECTION */
/*----------------*/

/*--- General ---*/


/*--- Mobile ---*/
@media only screen and (max-width: 768.99px) {

}

/*--- Desktop ---*/
@media only screen and (min-width: 769px) {

}