        /* FAQ Page Specific Styles */

        /* Page Header Styles */
        .page-header {
            padding-top: 120px;
            background: linear-gradient(135deg, #fff7f0 0%, #fff 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .page-header-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .breadcrumbs {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 24px;
            font-size: 0.875rem;
        }

        .breadcrumb-link {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-link:hover {
            color: var(--primary-color);
        }

        .breadcrumb-separator {
            color: var(--text-muted);
        }

        .breadcrumb-current {
            color: var(--primary-color);
            font-weight: 500;
        }

        .page-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .page-subtitle {
            font-size: 1.125rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Search Section */
        .faq-search {
            background: var(--white);
        }

        .search-wrapper {
            display: flex;
            justify-content: center;
        }

        .search-container {
            position: relative;
            max-width: 500px;
            width: 100%;
        }

        .search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            opacity: 0.5;
        }

        .search-input {
            width: 100%;
            padding: 16px 20px 16px 56px;
            border: 2px solid var(--border-color);
            border-radius: 50px;
            font-size: 1rem;
            background: var(--white);
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(253, 126, 20, 0.1);
        }

        .search-input::placeholder {
            color: var(--text-muted);
        }

        /* Category Tabs */
        .faq-categories {
            background: var(--background-light);
            padding: 30px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .category-tabs {
            display: flex;
            gap: 8px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .category-tab {
            padding: 12px 24px;
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 25px;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-light);
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .category-tab:hover,
        .category-tab.active {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* FAQ Content */
        .faq-content {
            background: var(--white);
        }

        .faq-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-category {
            margin-bottom: 60px;
        }

        .faq-category.hidden {
            display: none;
        }

        .category-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 32px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--primary-color);
            position: relative;
        }

        .category-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--primary-color);
        }

        .faq-item {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--primary-color);
            box-shadow: 0 4px 20px rgba(253, 126, 20, 0.1);
        }

        .faq-item.active {
            border-color: var(--primary-color);
            box-shadow: 0 8px 30px rgba(253, 126, 20, 0.15);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background: var(--background-light);
        }

        .faq-question h4 {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 0;
            line-height: 1.4;
            flex: 1;
            padding-right: 20px;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 24px 24px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding-top: 0;
        }

        .faq-answer p {
            color: var(--text-light);
            line-height: 1.6;
            margin: 0;
        }

        /* Contact Support */
        .faq-contact {
            margin-top: 80px;
            display: flex;
            justify-content: center;
        }

        .contact-card {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            padding: 48px;
            border-radius: 20px;
            text-align: center;
            color: var(--white);
            max-width: 500px;
            width: 100%;
        }

        .contact-card h3 {
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--white);
        }

        .contact-card p {
            font-size: 1rem;
            margin-bottom: 32px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .contact-card .button {
            background: var(--white);
            color: var(--primary-color);
            border: 2px solid var(--white);
        }

        .contact-card .button:hover {
            background: transparent;
            color: var(--white);
            border-color: var(--white);
        }

        /* Search Highlighting */
        .search-highlight {
            background: rgba(253, 126, 20, 0.2);
            padding: 2px 4px;
            border-radius: 4px;
        }

        /* No Results State */
        .no-results {
            text-align: center;
            padding: 60px 20px;
            color: var(--text-light);
        }

        .no-results h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: var(--text-dark);
        }

        .no-results p {
            font-size: 1rem;
            margin-bottom: 32px;
        }

        /* Loading State */
        .faq-loading {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px;
        }

        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid var(--border-color);
            border-top-color: var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .faq-item {
            animation: fadeInUp 0.5s ease-out forwards;
        }

        .faq-item:nth-child(2) {
            animation-delay: 0.1s;
        }

        .faq-item:nth-child(3) {
            animation-delay: 0.2s;
        }

        .faq-item:nth-child(4) {
            animation-delay: 0.3s;
        }

        .faq-item:nth-child(5) {
            animation-delay: 0.4s;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .page-title {
                font-size: 2.5rem;
            }

            .category-tabs {
                gap: 8px;
                padding: 0 20px;
            }

            .category-tab {
                padding: 10px 16px;
                font-size: 0.8rem;
            }

            .faq-wrapper {
                max-width: none;
            }
        }

        @media (max-width: 767px) {
            .page-header {
                padding-top: 100px;
            }

            .page-title {
                font-size: 2rem;
            }

            .page-subtitle {
                font-size: 1rem;
            }

            .breadcrumbs {
                flex-direction: column;
                gap: 4px;
            }

            .breadcrumb-separator {
                display: none;
            }

            .category-tabs {
                flex-direction: column;
                align-items: center;
            }
        }