        /* ============================================
           FAQ PAGE STYLES (with scroll + mobile slide)
        ============================================ */

        .faq-section {
            padding: 80px 0 100px;
        }

        /* ---- Search Box Styles ---- */
        .faq-search-wrapper {
            max-width: 600px;
            margin: 0 auto 40px;
            position: relative;
        }
        .faq-search-box {
            position: relative;
            display: flex;
            align-items: center;
            background: #fff;
            border: 2px solid #e0e7ff;
            border-radius: 50px;
            padding: 8px 20px;
            box-shadow: 0 4px 20px rgba(13,95,249,0.08);
            transition: all 0.3s ease;
        }
        .faq-search-box:focus-within {
            border-color: #0D5FF9;
            box-shadow: 0 6px 30px rgba(13,95,249,0.15);
        }
        .faq-search-box i {
            font-size: 20px;
            color: #0D5FF9;
            margin-right: 12px;
        }
        .faq-search-box input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 15px;
            font-family: 'Urbanist', sans-serif;
            padding: 12px 0;
            background: transparent;
            color: #333;
        }
        .faq-search-box input::placeholder {
            color: #999;
        }

        .faq-search-results {
            text-align: center;
            margin-top: 15px;
            font-size: 14px;
            color: #666;
        }
        .faq-search-results span {
            font-weight: 600;
            color: #0D5FF9;
        }
        .faq-no-results {
            text-align: center;
            padding: 60px 20px;
            display: none;
        }
        .faq-no-results.show {
            display: block;
        }
        .faq-no-results i {
            font-size: 60px;
            color: #e0e7ff;
            margin-bottom: 20px;
        }
        .faq-no-results h4 {
            font-size: 20px;
            color: #333;
            margin-bottom: 10px;
        }
        .faq-no-results p {
            color: #666;
            font-size: 15px;
        }
        .faq-item.hidden {
            display: none !important;
        }
        .faq-item .highlight {
            background: #fff3cd;
            padding: 0 2px;
            border-radius: 3px;
        }

        /* ---- Tab Nav Wrapper (for horizontal scroll on mobile) ---- */
        .faq-tab-wrapper {
            position: relative;
            margin-bottom: 50px;
        }
        .faq-tab-nav {
            display: flex;
            flex-wrap: nowrap;
            gap: 12px;
            justify-content: flex-start;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            padding-bottom: 12px;
            margin-bottom: 0;
        }
        .faq-tab-nav::-webkit-scrollbar {
            height: 4px;
        }
        .faq-tab-nav::-webkit-scrollbar-track {
            background: #eef2ff;
            border-radius: 10px;
        }
        .faq-tab-nav::-webkit-scrollbar-thumb {
            background: #0D5FF9;
            border-radius: 10px;
        }
        @media (min-width: 992px) {
            .faq-tab-nav {
                justify-content: center;
                overflow-x: visible;
                flex-wrap: wrap;
            }
            .faq-tab-nav::-webkit-scrollbar {
                display: none;
            }
        }

        .faq-tab-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 22px;
            border-radius: 50px;
            border: 2px solid #e0e7ff;
            background: #fff;
            color: #555;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            font-family: 'Urbanist', sans-serif;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .faq-tab-btn i {
            font-size: 16px;
            color: #0D5FF9;
            transition: color 0.25s;
        }
        .faq-tab-btn:hover {
            border-color: #0D5FF9;
            color: #0D5FF9;
            background: #f0f5ff;
        }
        .faq-tab-btn.active {
            background: #0D5FF9;
            border-color: #0D5FF9;
            color: #fff;
            box-shadow: 0 6px 20px rgba(13,95,249,0.25);
        }
        .faq-tab-btn.active i {
            color: #fff;
        }

        /* ---- Tab Panels ---- */
        .faq-panel {
            display: none;
        }
        .faq-panel.active {
            display: block;
            animation: fadeInUp 0.35s ease;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(14px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* ---- Accordion Items ---- */
        .faq-item {
            background: #fff;
            border-radius: 14px;
            margin-bottom: 14px;
            box-shadow: 0 3px 18px rgba(13,95,249,0.07);
            overflow: hidden;
            border: 1.5px solid #e8eef8;
            transition: box-shadow 0.3s ease, border-color 0.3s ease;
        }
        .faq-item.open {
            border-color: #0D5FF9;
            box-shadow: 0 6px 30px rgba(13,95,249,0.13);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 22px 26px;
            cursor: pointer;
            user-select: none;
            transition: background 0.2s;
        }
        .faq-question:hover {
            background: #fafcff;
        }
        .faq-question-left {
            display: flex;
            align-items: center;
            gap: 16px;
            flex: 1;
        }
        .faq-q-num {
            width: 36px;
            height: 36px;
            min-width: 36px;
            background: #e8f0fe;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
            color: #0D5FF9;
            font-family: 'Urbanist', sans-serif;
            transition: background 0.25s, color 0.25s;
        }
        .faq-item.open .faq-q-num {
            background: #0D5FF9;
            color: #fff;
        }
        .faq-question h2 {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a2e;
            margin: 0;
            line-height: 1.4;
            transition: color 0.25s;
            flex: 1;
        }
        .faq-item.open .faq-question h2 {
            color: #0D5FF9;
        }

        .faq-toggle-icon {
            width: 36px;
            height: 36px;
            min-width: 36px;
            border-radius: 50%;
            border: 2px solid #e0e7ff;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        .faq-toggle-icon i {
            font-size: 14px;
            color: #0D5FF9;
            transition: transform 0.3s ease;
        }
        .faq-item.open .faq-toggle-icon {
            background: #0D5FF9;
            border-color: #0D5FF9;
        }
        .faq-item.open .faq-toggle-icon i {
            color: #fff;
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            cursor: pointer;
        }
        .faq-answer-inner {
            padding: 15px 26px 24px 78px;
            font-size: 15px;
            color: #2c3e50;
            line-height: 1.8;
            border-top: 1px solid #0D5FF9;
            margin-top: 4px;
            background: #fefefe;
            text-align:justify;
        }

        @media (max-width: 768px) {
            .faq-question {
                padding: 18px 20px;
            }
            .faq-answer-inner {
                padding: 10px 20px 20px 20px;
            }
            .faq-q-num {
                width: 32px;
                height: 32px;
                min-width: 32px;
                font-size: 12px;
            }
            .faq-question h2 {
                font-size: 15px;
            }
            .faq-tab-btn {
                padding: 10px 18px;
                font-size: 13px;
            }
            .faq-search-box {
                padding: 6px 16px;
            }
            .faq-search-box input {
                font-size: 14px;
                padding: 10px 0;
            }
        }

        /* ---- Still Have Questions ---- */
        .faq-still {
            padding: 70px 0 90px;
            background: #f5f7ff;
        }
        .faq-still-box {
            background: #fff;
            border-radius: 20px;
            padding: 60px 50px;
            text-align: center;
            box-shadow: 0 8px 40px rgba(13,95,249,0.09);
            position: relative;
            overflow: hidden;
        }
        .faq-still-box::before {
            content: '?';
            position: absolute;
            right: -10px;
            top: -30px;
            font-size: 220px;
            font-weight: 700;
            color: rgba(13,95,249,0.04);
            font-family: 'Urbanist', sans-serif;
            line-height: 1;
            pointer-events: none;
        }
        .faq-still-icon {
            width: 68px;
            height: 68px;
            background: linear-gradient(135deg, #0D5FF9, #3b82f6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 22px;
        }
        .faq-still-icon i {
            font-size: 28px;
            color: #fff;
        }
        .faq-still-box h3 {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 14px;
        }
        .faq-still-box p {
            font-size: 16px;
            color: #666;
            max-width: 480px;
            margin: 0 auto 30px;
            line-height: 1.7;
        }
        
        @media (max-width: 991px) {
            .faq-tab-wrapper {
                position: relative;
            }
            .faq-tab-wrapper::after {
                content: '';
                position: absolute;
                right: 0;
                top: 0;
                height: 100%;
                width: 30px;
                background: linear-gradient(to right, transparent, #fff);
                pointer-events: none;
                display: block;
            }
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        .faq-scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background: #0D5FF9;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 4px 12px rgba(13,95,249,0.3);
        }
        .faq-scroll-top.show {
            opacity: 1;
            visibility: visible;
        }
        .faq-scroll-top:hover {
            background: #0044cc;
            transform: translateY(-3px);
        }
        
        .faq-section {
            scroll-margin-top: 100px;
        }

        /* FAQ Container with Scroll */
        .faq-scroll-container {
            max-height: 600px;
            overflow-y: auto;
            overflow-x: hidden;
            padding-right: 10px;
            scroll-behavior: smooth;
        }
        .faq-scroll-container::-webkit-scrollbar {
            width: 6px;
        }
        .faq-scroll-container::-webkit-scrollbar-track {
            background: #f0f5ff;
            border-radius: 10px;
        }
        .faq-scroll-container::-webkit-scrollbar-thumb {
            background: #0D5FF9;
            border-radius: 10px;
        }
        .faq-scroll-container::-webkit-scrollbar-thumb:hover {
            background: #0044cc;
        }

        @media (max-width: 768px) {
            .faq-scroll-container {
                max-height: 500px;
                padding-right: 5px;
            }
        }
