.qa-outer {
    width: 100%;
    box-sizing: border-box;
    padding-left: 8vw;
    padding-right: 8vw;
    margin: 0 auto;
    display: block;
}

.qa-section {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
}

.qa-title {
    text-align: left;
    font-size: 3.5vw;
    line-height: 3.8vw;
    margin-bottom: 9vh;
    color: #431107;
    width: 100%;
}

.qa-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    margin: 0;
}

#faq {
    flex: 0 0 44vw;
    margin-right: 8vw;
}

#feedback {
    flex: 1 1 32vw;
}


.faq-container {
    width: 100%;
    box-sizing: border-box;
}

.faq-item {
    position: relative;
    border-bottom: 1px solid #431107;
    padding: 1vw 0;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2vw;
    line-height: 2.4vw;
    color: #431107;
}

.faq-answer {
    margin-top: 1vh;
    font-size: 1.3vw;
    line-height: 1.8vw;
    padding: 0 0;
    color: #431107;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}

.faq-answer.expanded {
    max-height: 50vh;
    padding: 1vh 0;
}

.faq-arrow {
    width: 2vw;
    height: 2vw;
    margin-left: 1vw;
    object-fit: contain;
    transition: opacity 0.12s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    display: inline-block;
    vertical-align: middle;
}



@media (max-width: 500px) {
    .qa-outer {
        padding-left: 4vw;
        padding-right: 4vw;
    }

    .qa-title {
        font-size: 7vw;
        margin-bottom: 6vw;
    }

    .qa-row {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin: 0;
        align-items: stretch;
    }

    #faq {
        flex: unset;
        min-width: unset;
        max-width: unset;
        width: 88vw;
        margin-bottom: 6vw;
    }

    .faq-question {
        font-size: 4.5vw;
        line-height: 5vw;
        width: 100%;
    }

    .faq-answer {
        font-size: 3.5vw;
        line-height: 4.5vw;
        width: 85%;
    }

    .faq-arrow {
        width: 6vw;
        height: 6vw;
    }
}