/* ===== Q&A ===== */
.qa-section {
    margin-bottom: 8vh;
}

.qa-title {
    margin-bottom: 1rem;
}

.qa-note {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    color: rgb(133, 150, 176);
    opacity: 0.7;
    text-align: center;
    margin: 0 0 2rem;
}

.qa-list {
    width: 39vw;
    margin: 0 auto;
}

.qa-item+.qa-item {
    margin-top: 30px;
}

.qa-question {
    width: 100%;
    background: none;
    border: none;

    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    text-align: left;
    font-size: 16px;
    letter-spacing: 1.5px;
    font-weight: 600;
    /* text-transform: uppercase; */
    color: #1a202c;

    cursor: pointer;
    padding: 0;
}

.qa-icon {
    font-size: 22px;
    line-height: 1;
}

.qa-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.qa-answer p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 1px;
    margin-top: 16px;
    padding-left: 30px;
    color: #5c5c5c;
    text-align: left;
    text-align: justify;
}

@media (max-width: 900px) {
    .qa-section {
        min-height: 76vh;
    }

    .qa-title {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .qa-list {
        width: 80vw;
        padding: 0 0;
    }

    .qa-question {
        text-align: left;
    }

    .qa-answer p {
        text-align: justify;
        padding-left: 20px;
    }
}