.faq-section {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.faq-section h2 {
    font-size: 50px;
    margin-block: 20px;
    color: var(--color-black);
    line-height: 56px;
    font-weight: bold !important;
}

section.lnd-s.lnd-s_any:has(.faq-section),
section.lnd-s.lnd-s_any:has(.faq-section) .faq-section h2 {
    background: var(--color-white) !important;
}

section.lnd-s.lnd-s_any:has(.faq-section) .faq-section h2 {
    color: var(--color-black) !important;
}

section.lnd-s.lnd-s_any:has(.faq-section) .lnd-s_any-heading::after,
section.lnd-s.lnd-s_any:has(.faq-section) .lnd-s_any-heading::before {
    display: none !important;
}

@media (max-width: 1023px) {
    .faq-section ul {
        padding-inline: 20px;
    }
}

.faq-item {
    border-bottom: 2px solid var(--color-yellow-600);
}

.faq-question {
    cursor: pointer;
    padding: 16px 0;
    width: 100%;
    border: none;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    background: none;
    text-align: left;
}

.faq-question::after {
    content: url(/assets/themes/standart/img/svg/arrow-accordion.svg);
    font-size: 20px;
    color: #2281cf;
    transition: transform 0.3s ease;
    position: relative;
    right: 6px;
}

.faq-question.active {
    color: var(--color-purple-600);
}

.faq-question.active::after {
    content: url("/assets/themes/standart/img/svg/arrow-accordion.svg");
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
    padding: 0;
}

.faq-answer p {
    margin: 0;
    font-size: 15px;
    text-align: left;
}

.faq-question.active + .faq-answer {
    max-height: 500px;
    padding-block: 15px;
}
