#faq {

}

#faq h1 {
    text-align: center;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
    gap: 30px;
}

.faq-item {
    padding: 14px 16px;
    position: relative;
    height: max-content;
    border-bottom: 1px solid #E0E0E0;
}

.faq-item-wrap {
    display: flex;
    align-items: center;
    cursor: pointer;    
    position: relative;
}

.faq-item-title {
    color: var(--site-black);
    font-size: 24px;
    font-weight: 600;
}

.faq-item-wrap svg {
    margin-left: auto;
    height: 26px;
}

.faq-item-wrap svg * {
    stroke: var(--site-primary);
}


.faq-item-title span {
    color: var(--site-primary);
}

.faq-item-description {
    display: none;
    color: var(--site-text);
    font-size: 16px;
    margin-top: 7px;
}

.faq-item-description b,
.faq-item-description strong {
    color: #fff;
}

.faq-item.open .faq-item-description {
    display: block;
}

@media (max-width: 980px) {
    .faq-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}