.faq-hero {
    padding: 48px 0 32px;
    text-align: center;
}

.faq-hero .eyebrow {
    display: inline-block;
    background: #f1f5f9;
    color: #0f172a;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.faq-hero h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #0f172a;
}

.faq-hero .intro {
    max-width: 720px;
    margin: 12px auto 0;
    color: #475569;
    font-size: 1.05rem;
}

.faq-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    margin-bottom: 32px;
}

.faq-columns {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 2fr;
    gap: 28px;
}

.faq-summary h2 {
    margin-top: 0;
    color: #0f172a;
    font-size: 1.25rem;
}

.faq-summary p {
    color: #475569;
    line-height: 1.6;
}

.faq-highlights {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.faq-highlights li {
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 10px;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.open {
    border-color: #0ea5e9;
    box-shadow: 0 10px 24px rgba(14, 165, 233, 0.12);
}

.faq-question {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
}

.faq-question:focus-visible {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
}

.faq-icon {
    transition: transform 0.2s ease;
    font-size: 1.2rem;
    color: #0ea5e9;
}

.faq-item.open .faq-icon {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 18px 18px;
    color: #475569;
    line-height: 1.6;
    background: #ffffff;
}

.faq-answer p {
    margin: 0;
}

.faq-help {
    text-align: center;
    padding: 18px 0 40px;
}

.faq-help h2 {
    margin: 0 0 10px;
    color: #0f172a;
}

.faq-help p {
    margin: 0 0 18px;
    color: #475569;
}

.faq-contact {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.25);
}

.faq-contact:hover {
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .faq-columns {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .faq-hero h1 {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }
}

