.faq {
    margin-bottom: 1.5em;
    overflow: hidden;
}

.faq-question {
    display: flex;
    padding: 15px 45px 15px 20px;
    background-color: #fff;
    border: 3px solid #e6edf6;
    border-radius: 8px;
    position: relative;
    margin-bottom: 20px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Be Vietnam Pro';
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    padding: 0;
    font-size: 17px;
    font-weight: 600;
}

.faq-question::after {
    content: "";
    background-image: url(../img/angle-down-solid.svg);
    background-size: 14px;
    width: 14px;
    height: 14px;
    position: absolute;
    right: 25px;
    pointer-events: none;
    transform: rotate(0deg);
    transition: transform 0.3s;
}

.faq-answer {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 15px;
    opacity: 0;
    position: absolute;
    transition: all 0.3s cubic-bezier(0.27, 0.52, 0.46, 0.86);
}

.faq-answer.open {
    opacity: 1;
    position: unset;
}

.faq-item:has(.faq-answer.open) .faq-question::after {
    transform: rotate(180deg);
}