    /* Enhanced FAQ Page Styles */
    .faq-hero {
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        background-image: url('faq_bg.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: #ffffff;
        padding: 60px 0;
        border-bottom: 4px solid #ff6600;
    }
    .faq-hero h1 {
        font-weight: 700;
        margin-bottom: 15px;
    }
    .faq-hero p {
        color: #94a3b8;
        font-size: 1.15rem;
    }
    .faq-category {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 25px;
        margin-bottom: 30px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .faq-category:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    }
    .faq-category h3 {
        color: #ff6600;
        font-size: 1.25rem;
        font-weight: 600;
        border-bottom: 2px solid #f1f5f9;
        padding-bottom: 12px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .faq-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .faq-list li {
        margin-bottom: 12px;
    }
    .faq-list li:last-child {
        margin-bottom: 0;
    }
    .faq-list a {
        color: #334155;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 500;
        transition: color 0.2s ease, padding-left 0.2s ease;
    }
    .faq-list a::before {
        content: "›";
        color: #ff6600;
        font-weight: bold;
        font-size: 1.2rem;
        line-height: 1;
    }
    .faq-list a:hover {
        color: #ff6600;
        padding-left: 5px;
    }
    .faq-help-box {
        background: #f8fafc;
        border: 2px dashed #cbd5e1;
        border-radius: 8px;
        padding: 40px 20px;
        margin-top: 40px;
    }

    .faq-hero .breadcrumb-item {
        color: #FFF;
    }
    .faq-hero .breadcrumb li a {
        color: #FFF;
    }
    .faq-hero .breadcrumb-item::before {
        color: #fff;
    }