﻿body {
    background: #f7f9fc;
}


/* HERO */

.faq-category-hero {
    background: white;
    border-bottom: 1px solid #edf1f7;
    padding: 70px 0;
}

.faq-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.faq-breadcrumb {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 14px;
}

    .faq-breadcrumb a {
        color: #2563eb;
        text-decoration: none;
    }

    .faq-breadcrumb .current {
        color: #6b7280;
    }

.faq-category-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111827;
}

.faq-category-hero p {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.8;
    color: #6b7280;
}


/* QUESTIONS */

.faq-category-content {
    padding: 70px 0;
}

.faq-questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.faq-question-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #edf1f7;
    text-decoration: none;
    transition: all 0.25s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

    .faq-question-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
    }

.faq-question-category {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef4ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
}

.faq-question-card h2 {
    margin-top: 24px;
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 1.3;
    color: #111827;
}

.faq-question-card p {
    color: #6b7280;
    line-height: 1.8;
    flex-grow: 1;
}

.faq-question-footer {
    margin-top: 28px;
    color: #2563eb;
    font-weight: 700;
}


/* CTA */

.faq-cta-section {
    padding: 100px 0;
}

.faq-cta-box {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 32px;
    padding: 70px;
    text-align: center;
    color: white;
}

    .faq-cta-box h2 {
        font-size: 44px;
        margin-bottom: 20px;
    }

    .faq-cta-box p {
        max-width: 700px;
        margin: 0 auto 40px;
        font-size: 18px;
        line-height: 1.8;
    }

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 36px;
    border-radius: 16px;
    background: white;
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
}


/* RESPONSIVE */

@media (max-width: 960px) {

    .faq-category-hero h1 {
        font-size: 40px;
    }

    .faq-question-card h2 {
        font-size: 24px;
    }
}
