:root {
            --faq-primary-color: #2a2144; /* Dark purple */
            --faq-secondary-color: #f28c38; /* Vibrant orange */
            --faq-light-color: #f8f9fa; /* Light background */
            --faq-dark-color: #212529; /* Dark text */
            --faq-muted-color: #6c757d; /* Muted text */
        }

        .faq-section {
            padding: 5rem 1rem;
            background-color: var(--faq-light-color); /* Use light background */
        }

        .faq-section .container {
            max-width: 64rem;
            margin: 0 auto;
        }

        .faq-section .header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .faq-section .icon-wrapper {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 4rem;
            height: 4rem;
            background: var(--faq-primary-color); /* Use primary color */
            border-radius: 1rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 25px rgba(59, 48, 95, 0.2);
        }

        .faq-section .icon-wrapper i {
            font-size: 2rem;
            color: white;
        }

        .faq-section .title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--faq-primary-color); /* Use primary color for title */
            margin-bottom: 1rem;
        }

        .faq-section .subtitle {
            font-size: 1.25rem;
            color: var(--faq-muted-color); /* Use muted color */
            max-width: 42rem;
            margin: 0 auto;
            line-height: 1.7;
        }

        .faq-section .controls {
            margin-bottom: 3rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .faq-section .search-wrapper {
            position: relative;
            max-width: 24rem;
            margin: 0 auto;
        }

        .faq-section .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            font-size: 1.25rem;
        }

        .faq-section .search-input {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 3rem;
            border: 2px solid #e5e7eb;
            border-radius: 1rem;
            font-size: 1rem;
            background: #fff;
            transition: all 0.3s ease;
        }

        .faq-section .search-input:focus {
            outline: none;
            border-color: var(--faq-secondary-color); /* Use secondary color for focus */
            box-shadow: 0 0 0 3px rgba(242, 140, 56, 0.2);
        }

        .faq-section .category-filters {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
        }

        .faq-section .filter-btn {
            padding: 0.5rem 1.5rem;
            border: 1px solid #e5e7eb;
            border-radius: 9999px;
            background: #fff;
            color: var(--faq-muted-color);
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-section .filter-btn:hover {
            background: white;
            color: var(--faq-primary-color);
            border-color: var(--faq-primary-color);
        }

        .faq-section .filter-btn.active {
            background: var(--faq-secondary-color); /* Use secondary color for active button */
            color: white;
            border-color: var(--faq-secondary-color);
            box-shadow: 0 4px 15px rgba(242, 140, 56, 0.3);
        }

        .faq-section .faq-items {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-section .faq-item {
            background: #fff;
            border: 2px solid #e5e7eb;
            border-radius: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-section .faq-item:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            border-color: var(--faq-primary-color);
            transform: translateY(-2px);
        }

        .faq-section .faq-header {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
        }

        .faq-section .faq-header:hover {
            background: rgba(59, 48, 95, 0.05);
        }

        .faq-section .faq-left {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex: 1;
            min-width: 0;
        }

        .faq-section .faq-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: #fee2d5; /* Lighter shade of secondary color */
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        /* COLOR FIX 1: Change the icon color inside the circle */
        .faq-section .faq-icon i {
            color: var(--faq-secondary-color); /* Changed to orange */
            font-size: 1.25rem;
        }

        .faq-section .faq-content {
            min-width: 0;
            flex: 1;
        }

        .faq-section .faq-question {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--faq-dark-color);
            margin-bottom: 0.25rem;
            transition: color 0.3s ease;
        }

        .faq-section .faq-item:hover .faq-question {
            color: var(--faq-primary-color);
        }

        .faq-section .faq-category {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: #f3e8ff; /* Lighter shade of primary color */
            color: var(--faq-primary-color);
            font-size: 0.75rem;
            font-weight: 500;
            border-radius: 9999px;
        }

        .faq-section .chevron {
            color: #9ca3af;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-section .faq-item:hover .chevron {
            color: var(--faq-primary-color);
        }

        .faq-section .faq-item.active .chevron {
            transform: rotate(180deg);
            color: var(--faq-secondary-color);
        }

        .faq-section .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            opacity: 0;
        }

        .faq-section .faq-item.active .faq-answer {
            max-height: 24rem;
            opacity: 1;
        }

        .faq-section .faq-answer-content {
            padding: 0 1.5rem 1.5rem 1.5rem;
        }

        .faq-section .faq-divider {
            height: 1px;
            background: #e5e7eb;
            margin: 0 3.5rem 1rem 3.5rem;
        }

        .faq-section .faq-answer p {
            color: var(--faq-muted-color);
            line-height: 1.7;
            padding-left: 0;
        }

        .faq-section .no-results {
            text-align: center;
            padding: 3rem;
            background: #fff;
            border: 2px dashed #e5e7eb;
            border-radius: 1rem;
        }

        .faq-section .no-results i {
            font-size: 3rem;
            color: #9ca3af;
            margin-bottom: 1rem;
        }

        .faq-section .no-results h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #6b7280;
            margin-bottom: 0.5rem;
        }

        .faq-section .no-results p {
            color: #9ca3af;
        }

        .faq-section .contact-support {
            margin-top: 4rem;
            text-align: center;
            padding: 2.5rem;
            background: var(--faq-primary-color);
            border-radius: 1rem;
            color: white;
        }

        .faq-section .contact-support i {
            font-size: 3rem;
            color: var(--faq-secondary-color);
            margin-bottom: 1rem;
        }

        .faq-section .contact-support h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: white; /* Ensure it's white */
        }
        
        /* COLOR FIX 2: Change the paragraph text color to white */
        .faq-section .contact-support p {
            color: white; /* Changed to white */
            opacity: 0.9; /* Add slight opacity for depth */
            font-size: 1.125rem;
            margin-bottom: 1.5rem;
        }

        .faq-section .contact-btn {
            background: var(--faq-secondary-color);
            color: white;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 9999px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .faq-section .contact-btn:hover {
            background: #d97706; /* Darker orange on hover */
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .faq-section .fade-in {
            animation: fadeIn 0.3s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }