.faq-hero {
    background: linear-gradient(135deg, var(--heading) 0%, #132e5a 100%);
    padding: 60px 20px;
    margin-top: 90px;
    text-align: center;
    position: relative;
}

.faq-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary, #0B5ED7);
}

.faq-hero-breadcrumb {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.faq-hero-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.faq-hero-breadcrumb a:hover {
    color: var(--primary, #0B5ED7);
}

.faq-hero-breadcrumb span {
    color: var(--primary, #0B5ED7);
}

.faq-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.faq-hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section {
    padding: 40px 20px 80px;
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
}

.faq-search-wrap {
    margin-bottom: 36px;
}

.faq-search {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    background: var(--white);
    color: var(--heading);
    outline: none;
    transition: border-color 0.2s;
}

.faq-search:focus {
    border-color: var(--primary, #0B5ED7);
}

.faq-search::placeholder {
    color: #94a3b8;
}

.faq-group {
    margin-bottom: 36px;
}

.faq-group-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 8px;
    background: var(--white);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--heading);
    line-height: 1.5;
    font-family: inherit;
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gray);
    transition: transform 0.25s ease;
}

.faq-icon::before {
    top: 9px;
    left: 4px;
    width: 12px;
    height: 2px;
}

.faq-icon::after {
    top: 4px;
    left: 9px;
    width: 2px;
    height: 12px;
}

.faq-item.open .faq-icon::after {
    transform: rotate(90deg);
}

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

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 18px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
}

.faq-answer a {
    color: var(--primary, #0B5ED7);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    margin-top: 48px;
    padding: 40px 24px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--border);
}

.faq-cta h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 8px;
}

.faq-cta p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 20px;
}

.faq-cta-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary, #0B5ED7);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s;
}

.faq-cta-btn:hover {
    background: var(--primary-dark, #084BB0);
}

@media (max-width: 992px) {
    .faq-hero-title {
        font-size: 30px;
    }

    .faq-question {
        font-size: 14px;
        padding: 14px 16px;
    }

    .faq-answer p {
        padding: 0 16px 14px;
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .faq-hero {
        padding: 40px 16px;
    }

    .faq-hero-title {
        font-size: clamp(16px, 4.5vw, 30px);
    }

    .faq-hero-desc {
        font-size: 14px;
    }

    .faq-section {
        padding: 24px 12px 60px;
    }

    .faq-group-title {
        font-size: 17px;
    }
}
