.about-section {
    display: flex;
    justify-content: center;
}

.about-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
}

.about-top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.about-bottom {
    display: flex;
    justify-content: center;
    width: 100%;
}

.about-picture {
    display: flex;
    height: 100%;
    margin: 1rem;
    background-color: var(--primaryTheme);
    border-radius: 1rem;
    border: 0.5em solid var(--primaryTheme);
}

.about-picture-image {
    width: auto;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.about-headline {
    margin: 0 0 0.3em;
}

.about-subheadline {
    margin: 0 0 0.1em;
    line-height: 1em;
}

/*--- Mobile ---*/
@media only screen and (max-width: 768.99px) {
    .about-section {
        padding: 2rem 0;
        margin: 0;
    }

    .about-container {
        max-width: 90%;
    }

    .about-top {
        flex-direction: column-reverse;
    }

    .about-content {
        text-align: center;
        align-items: center;
    }

    .about-button {
        width: 80%;
    }

    .about-picture-image {
        max-width: 300px;
    }
    
}

/*--- Desktop ---*/
@media only screen and (min-width: 769px) {
    .about-section {
        padding: 5rem 2rem;
    }

    .about-button {
        margin-top: 2rem !important;
        width: 500px;
    }

    .about-picture-image {
        max-width: 400px;
    }
}

/*-------------*/
/* 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 {
    border-radius: 1rem;
    padding: 1rem;
    width: 100%;
    box-shadow: 0 0 0.5rem 0.1rem var(--secondaryTheme);
}

.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%;
    }
}
