.faq-hero {
    padding: 8rem 0 4rem;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.75) 0%, transparent 50%),
                linear-gradient(to right, rgba(15, 23, 42, 0.65) 0%, transparent 80%),
                radial-gradient(circle at 20% 30%, rgba(236, 172, 50, .05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(236, 172, 50, .03) 0%, transparent 50%);
}

.faq-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-weight: 600;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    padding-right: 0.75rem;
    color: #fff;
}

.faq-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-hero-title span {
    color: var(--primary-color);
}

.faq-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 600;
}

.faq-content {
    padding: 3rem 0 6rem;
    background: #f8fafc;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 920px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    transition: box-shadow .3s;
}

.faq-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    position: relative;
    transition: all .3s;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color, var(--primary-color));
    transform: scaleY(0);
    transition: transform .3s;
}

.faq-item.active .faq-question::before {
    transform: scaleY(1);
}

.faq-q-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(236, 172, 50, 0.1), rgba(236, 172, 50, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.faq-item.active .faq-q-icon {
    background: linear-gradient(135deg, var(--primary-color, var(--primary-color)) 0%, #f7d2c4 100%);
}

.faq-q-icon i {
    font-size: 1.25rem;
    color: var(--primary-color, var(--primary-color));
    transition: color .3s;
}

.faq-item.active .faq-q-icon i {
    color: var(--primary-color);
}

.faq-question-text {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s;
}

.faq-toggle i {
    font-size: 1rem;
    color: #64748b;
    transition: all .3s;
}

.faq-item.active .faq-toggle {
    background: var(--primary-color, var(--primary-color));
    transform: rotate(180deg);
}

.faq-item.active .faq-toggle i {
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
}

.faq-item.active .faq-answer {
    max-height: 700px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer-content {
    padding-right: 3.75rem;
    color: #475569;
    line-height: 1.9;
    font-size: .975rem;
}

.faq-answer-content p {
    margin-bottom: .75rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content a {
    color: var(--primary-color, var(--primary-color));
    text-decoration: underline;
}

.faq-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(236, 172, 50, 0.1) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(236, 172, 50, .08) 0%, transparent 50%);
}

.faq-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.faq-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.faq-cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-inline: auto;
}

.faq-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all .3s;
    text-decoration: none;
}

.faq-cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-color, var(--primary-color)) 0%, #f7d2c4 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(236, 172, 50, 0.4);
}

.faq-cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(236, 172, 50, 0.5);
}

.faq-cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-color, var(--primary-color)) 0%, #d49a2a 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(236, 172, 50, 0.03);
}

.faq-cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(236, 172, 50, 0.05);
}

.faq-cta-btn.secondary {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
}

.faq-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, .2);
}

@media(max-width:991.98px) {
    .faq-hero {
        padding: 5rem 0 3rem;
    }

    .faq-hero-title {
        font-size: 2.25rem;
    }
}

@media(max-width:575.98px) {
    .faq-hero-title {
        font-size: 1.75rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-answer-content {
        padding-right: 0;
    }

    .faq-cta-title {
        font-size: 1.5rem;
    }
}