.faq-layout-section {
    padding: 70px 0 40px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 46px;
    align-items: start;
}

.faq-sidebar {
    position: sticky;
    top: 110px;
}

.faq-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-sidebar__link {
    display: block;
    padding: 14px 18px;
    border-left: 3px solid transparent;
    border-radius: 14px;
    color: #6f758b;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    background: transparent;
    transition: all 0.2s ease;
}

.faq-sidebar__link:hover,
.faq-sidebar__link:focus,
.faq-sidebar__link.is-active {
    border-left-color: #2c2b29;
    background: #9cbb3a;
    color: #ffffff;
    text-decoration: none;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.faq-category__title {
    margin: 0 0 22px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #dde4d3;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(33, 47, 27, 0.04);
}

.faq-item__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    list-style: none;
    cursor: pointer;
}

.faq-item__summary::-webkit-details-marker {
    display: none;
}

.faq-item__summary span:first-child {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

.faq-item__icon {
    position: relative;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eaf4df;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: #567d2f;
    border-radius: 999px;
    transform: translate(-50%, -50%);
}

.faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__content {
    padding: 0 24px 22px;
}

.faq-item__content p {
    margin: 0;
    max-width: 900px;
    line-height: 1.9;
}

.faq-help-strip {
    padding: 40px 0 70px;
}

.faq-help-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 48px 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, #000000 0%, #2C2B29 100%);
    color: #fff;
}

.faq-help-strip__content h2 {
    margin: 0 0 12px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.faq-help-strip__content p {
    margin: 0;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.7;
}

.faq-help-strip__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-sidebar {
        position: static;
    }

    .faq-sidebar__nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-sidebar__link {
        border-left: 0;
        border: 1px solid #dde4d3;
    }

    .faq-sidebar__link:hover,
    .faq-sidebar__link:focus,
    .faq-sidebar__link.is-active {
        border-color: #467b35;
    }

    .faq-help-strip__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 32px;
    }
}

@media (max-width: 767px) {
    .faq-layout-section {
        padding: 50px 0 24px;
    }

    .faq-content {
        gap: 34px;
    }

    .faq-category__title {
        font-size: 26px;
    }

    .faq-item__summary {
        padding: 18px;
    }

    .faq-item__summary span:first-child {
        font-size: 16px;
    }

    .faq-item__content {
        padding: 0 18px 18px;
    }

    .faq-help-strip {
        padding: 26px 0 50px;
    }

    .faq-help-strip__inner {
        padding: 30px 22px;
    }

    .faq-help-strip__content h2 {
        font-size: 28px;
    }

    .faq-help-strip__content p {
        font-size: 16px;
    }

    .faq-help-strip__actions {
        width: 100%;
    }

    .faq-help-strip__button {
        width: 100%;
    }
}
