.faq-hero {
    position: relative;
    min-height: 405px;
    margin-top: -2px;
    background-image: url("../../images/faq/faq-hero.png");
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.faq-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.64);
}

.faq-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
    padding: 40px 15px;
}

.faq-hero__content h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
    margin: 0 0 23px;
    letter-spacing: 0;
}

.faq-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
}

.faq-hero__breadcrumb a,
.faq-hero__breadcrumb span {
    color: #ffffff;
}

.faq-hero__breadcrumb span:last-child {
    color: #0b62ff;
}

.faq-section {
    background: #ffffff;
    padding: 98px 15px 110px;
}

.faq-container {
    width: min(870px, 100%);
    margin: 0 auto;
}

.faq-intro {
    margin-bottom: 31px;
}

.faq-intro h2 {
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 11px;
    letter-spacing: 0;
}

.faq-intro p {
    color: #101321;
    font-size: 17px;
    line-height: 1.55;
    margin: 0;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    min-height: 65px;
    border: 0;
    background: #e9e9e9;
    color: #30323a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 21px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    cursor: pointer;
}

.faq-question span:first-child {
    color: #075dff;
    font-weight: 500;
}

.faq-question.collapsed span:first-child {
    color: #30323a;
    font-weight: 600;
}

.faq-question strong {
    font-weight: inherit;
    margin-right: 7px;
}

.faq-question__icon {
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-right: 2px solid #0b62ff;
    border-bottom: 2px solid #0b62ff;
    pointer-events: none;
    transform: rotate(225deg);
    transition: transform 0.2s ease;
}

.faq-accordion .collapse {
    display: none;
}

.faq-accordion .collapse.show {
    display: block;
}

.faq-question:not(.collapsed) .faq-question__icon {
    transform: rotate(225deg);
}

.faq-question.collapsed .faq-question__icon {
    transform: rotate(45deg);
}

.faq-answer {
    border: 1px solid #e2e2e2;
    border-top: 0;
    color: #101321;
    font-size: 17px;
    line-height: 1.5;
    padding: 20px;
    background: #ffffff;
}

@media (max-width: 767px) {
    .faq-hero {
        min-height: 300px;
    }

    .faq-hero__content h1 {
        font-size: 46px;
    }

    .faq-section {
        padding: 60px 15px 70px;
    }

    .faq-intro h2 {
        font-size: 22px;
    }

    .faq-intro p,
    .faq-answer {
        font-size: 15px;
    }

    .faq-question {
        min-height: 58px;
        padding: 15px;
        font-size: 15px;
    }
}
