.faq {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq .title {
    color: #FFF;
    font-size: 20px;
    font-weight: 800;
     /* 100% */
}
.faq .faq-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq .faq-items .faq-item {
    display: flex;
    flex-direction: column;
}

.faq .faq-items .faq-item .faq-question {
    border-radius: 14px;
    border: 1px solid #30344F;
    background: #101626;
    width: calc(100% - 40px);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 300ms;
    cursor: pointer;
}

.faq .faq-items .faq-item.active .faq-question {
    border: 1px solid #30344F;
    background: #161B2D;
    transition: all 300ms;
}

.faq .faq-items .faq-item .faq-question span {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
}
.faq .faq-items .faq-item .faq-question svg {
    transform: rotate(0deg);
    transition: all 300ms;
}


.faq .faq-items .faq-item.active .faq-answer {
    display: block;
}

.faq .faq-items .faq-item.active .faq-question svg {
    transform: rotate(180deg);
    transition: all 300ms;
}

.faq .faq-items .faq-item .faq-answer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    width: calc(100% - 40px);
    padding: 15px 20px;
    display: none;
}