.experience-layouts-faq {
    margin: 0 !important;
}

.faq-component {
    max-width: 1440px;
    margin: 0 auto var(--margin_bottom) auto;
}

@media screen and (min-width: 600px) and (max-width: 1470px) {
    .faq-component {
        padding: 0 3%;
    }
}

@media screen and (max-width: 600px) {
    .faq-component {
        margin-bottom: var(--margin_bottom_mobile);
    }
}

.faq-header-container {
    text-align: center;
    padding-bottom: 40px;
}

.faq-header-text {
    color: var(--header_text_color);
    font-size: 40px;
    padding-bottom: 10px;
}

.faq-subheader-text {
    color: var(--subheader_text_color);
}

.faq-questions-container {
    display: flex;
    flex-direction: column;
}

.faq-question {
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    background-color: var(--background_color);
    margin: 10px 0;
    padding: 25px;
    color: var(--text_color);
}

.faq-question:first-child {
    margin-top: 0;
}

.faq-question:last-child {
    margin-bottom: 0;
}

.faq-question:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px var(--arrow_color) !important;
}

.faq-question-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question-text {
    font-size: 22px;
    text-decoration: underline;
}

@media screen and (max-width: 600px) {
    .faq-question-text {
        font-size: 18px;
    }
}

.faq-answer-text {
    font-size: 14px;
    padding-top: 20px;
    line-height: 1.5;
    display: none;
}

.faq-question-answer-arrow {
    transform: rotate(-90deg);
    width: 15px;
    transition: all 0.3s ease;
}

.faq-question-arrow-path {
    fill: var(--arrow_color);
}
