.faq-hero {
    position: relative;
    width: 100vw;
    height: auto;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(163, 17, 112, 0.8) 0%, rgba(37, 3, 26, 0) 80%);
    z-index: 2;
    pointer-events: none;
}

.faq-hero-img {
    max-height: 380px;
    width: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.faq-title {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: white;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.faq-subtitle {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: white;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    width: 100%;
}

.faq-content-wrapper {
    padding: 20px 0 24px 0;
}

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

.faq-content .breadcrubs {
    padding: 0;
}

.faq-content h3 {
    line-height: 1.3;
    font-weight: 600;
    color: var(--gray-1);
}

.faq-content .custom-accordion {
    padding: 0;
}

.faq-content .accordion-item {
    padding: 12px;
    border: 1px solid var(--gray-5);
    border-radius: 8px;
}

.faq-content .accordion-header h5 {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-1);
}

.faq-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border: 2px solid var(--primary-color);
    border-radius: 24px;
    min-width: 24px;
    max-height: 24px;
}

.accordion-chevron::before {
    content: "+";
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.2s ease;
}

.accordion-item.active .accordion-chevron::before {
    content: "-";
}


/* .faq-form .form-section::after {
    width: 70% !important;
} */

.faq-form .form-right {
    margin: 0 !important;
}









@media (max-width:1199px) {
    .faq-subtitle {
        white-space: unset;
    }
}

@media (max-width: 991px) {
    .faq-title {
        top: 60%;
    }

    .faq-subtitle {
        top: 80%;
    }

    .nav-wrapper {
        height: unset;
    }

    

    .faq-chooseus .choose-wrapper {
        padding: 32px !important;
        background: #F2F2F266 !important;
    }
}


@media (max-width: 767px) {
    .faq-title {
        top: 65%;
        font-size: 32px;
        font-weight: 500;
    }

    .faq-subtitle {
        top: 83%;
        font-size: 14px;
    }

    .faq-content-wrapper {
        padding: 16px 0 34px 0;
    }

    .faq-content {
        gap: 16px;
    }

    .faq-content h3 {
        font-size: 18px;
    }

    .faq-content .accordion-header h5 {
        font-size: 14px;
    }

    .custom-accordion .accordion-item {
        margin-bottom: 14px;
    }

    .faq-hero-img {
        max-height: 250px;
    }
}

@media (max-width: 575px) {
    .faq-title {
        font-size: 24px;
    }

    .faq-hero-img {
        max-height: 200px;
    }

}