/* CSS cho FAQ */
.section-faqs {
    background: #063F34;
}
.faq-container {
    max-width: 1218px;
    width: 100%;
    padding: 81px 24px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.faq-header {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
}
.faq-header.layout-left {
    align-items: flex-start;
    padding-bottom: 14px;
}

.faq-header p,
.faq-header h1 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    letter-spacing: 0.03em;
    margin: 0;
    color: #ccc;
}

.faq-header h3 {
    font-family: Product Sans;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    text-align: center;
    color: #FAFAFA;
    margin-bottom: 47px;
}

.faq-header h3 span {
    font-family: Cormorant;
    font-size: 48px;
    font-style: italic;
    font-weight: 500;
    line-height: 40px;
    text-align: center;

}

.faq-item {
    border-top: 1px solid rgba(134, 148, 147, 0.2);
    padding: 37px 32px 36px;
    color: #FAFAFA;
    transition: all .3s;
}

.faq-item.active {
    padding: 24px 32px;
    background: rgba(208, 208, 208, 0.20);
    border-color: #86949333;
}

.question {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    cursor: pointer;
}

.question > span {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: .9px;
}

.question .fi {
    background-image: url('../assets/images/fi_plus.svg');
    width: 32px;
    height: 32px;
    background-size: cover;
}

.question .fi.fi-minus {
    background-image: url('../assets/images/fi_minus.svg');
}

.faq-item.active .question > span {
    color: #FAFAFA;
}

.answer {
    display: none;
}

.answer p {
    margin: 0;
    margin-top: 16px;
}

.faq-item.active .answer > p {
    color: #ccc;
    width: 81%;
    letter-spacing: .8px;
}
.faq-item.active .answer > p a {
    color: #9FCD9F;
    text-decoration: none;
    transition: all .5s;
}
.faq-item.active .answer > p a:hover {
    color: #ccc;
}

.faq-item .answer ul {
    margin: 12px 0 0 0;
    padding-left: 1.6rem;
    font-family: Product Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.05em;
}
#faq-light {
    background-color: #FAFAFA;
}
#faq-light .faq-header p,
#faq-light .faq-header h1 {
    color: #61665A;
}
#faq-light .faq-header h3 {
    color: #152305;
}
#faq-light .faq-item {
    color: #152305;
}
#faq-light .faq-item.active .question > span {
    color: #152305;
}
#faq-light .faq-item.active .answer > p {
    color: #61665A;
}
#faq-light .question .fi {
    background-image: url(../assets/images/fi_plus_light.svg);
}
#faq-light .question .fi.fi-minus {
    background-image: url(../assets/images/fi_minus_light.svg);
}
/* Kiểu cho button toggle */
.toggle-button {
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .faq-container {
        padding: 41px 24px;
    }
    .faq-header p,
    .faq-header h1 {
        font-size: 12px;
        line-height: 22px;
    }
    .faq-header h3 {
        line-height: 32px;
        font-size: 26px;
        margin-top: 6px;
        margin-bottom: 31px;
    }
    .faq-header h3 span {
        font-size: 34px;
        line-height: 32px;
    }
    .faq-item, .faq-item.active {
        padding: 23px 8px 17px;
    }
    .question > span {
        font-size: 14px;
        line-height: 18px;
        letter-spacing: .7px;
        max-width: 90%;
    }
    .faq-item.active .answer > p {
        width: 100%;
        letter-spacing: .67px;
        font-size: 12px;
        line-height: 16px;
        margin-top: 8px;
    }
    .answer p {
        margin-top: 4px;
    }
    .question .fi {
        width: 24px;
        height: 24px;
    }
    .faq-header.layout-left {
        align-items: center;
        padding-bottom: 32px;
    }
    .faq-item .answer ul {
        font-size: 14px;
        line-height: 20px;
    }
}