﻿body {
    background: #f7f9fc;
}


/* HERO */

.faq-article-hero {
    background: white;
    border-bottom: 1px solid #edf1f7;
    padding: 60px 0;
}

.faq-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.faq-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
}

    .faq-breadcrumb a {
        color: #2563eb;
        text-decoration: none;
    }

    .faq-breadcrumb .current {
        color: #6b7280;
    }

.faq-article-hero h1 {
    font-size: 54px;
    line-height: 1.1;
    font-weight: 800;
    color: #111827;
    max-width: 900px;
    margin-bottom: 24px;
}

.faq-excerpt {
    max-width: 800px;
    font-size: 20px;
    line-height: 1.8;
    color: #6b7280;
}


/* CONTENT */

.faq-article-content-section {
    padding: 70px 0;
}

.faq-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 50px;
    align-items: start;
}

.faq-article-content {
    background: white;
    border-radius: 28px;
    padding: 60px;
    border: 1px solid #edf1f7;
    line-height: 1.9;
    color: #374151;
    font-size: 17px;
}

    .faq-article-content h2 {
        margin-top: 50px;
        margin-bottom: 20px;
        font-size: 32px;
        color: #111827;
    }

    .faq-article-content h3 {
        margin-top: 40px;
        margin-bottom: 18px;
        font-size: 24px;
        color: #111827;
    }

    .faq-article-content p {
        margin-bottom: 24px;
    }

    .faq-article-content ul,
    .faq-article-content ol {
        padding-left: 24px;
        margin-bottom: 24px;
    }

    .faq-article-content a {
        color: #2563eb;
    }


/* SIDEBAR */

.faq-sidebar {
    position: sticky;
    top: 120px;
}

.faq-sidebar-box {
    background: white;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #edf1f7;
}

    .faq-sidebar-box h3 {
        margin-top: 0;
        margin-bottom: 24px;
        font-size: 22px;
    }

.faq-related-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-related-item {
    color: #2563eb;
    text-decoration: none;
    line-height: 1.6;
}

    .faq-related-item:hover {
        text-decoration: underline;
    }


/* 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: 46px;
        margin-bottom: 20px;
    }

    .faq-cta-box p {
        max-width: 720px;
        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-article-layout {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
    }

    .faq-article-content {
        padding: 36px;
    }

    .faq-article-hero h1 {
        font-size: 40px;
    }
}
