        :root {
            --primary-gradient: linear-gradient(135deg, #dd023c 0%, #ff1744 100%);
            --secondary-gradient: linear-gradient(135deg, #dd023c 0%, #c62828 100%);
            --dark-bg: #0D0D0D;
            --card-bg: rgba(28, 28, 30, 0.9);
            --card-hover: rgba(57, 57, 58, 0.95);
            --border-color: rgba(255, 255, 255, 0.1);
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --accent-color: #dd023c;
            --success-color: #4ade80;
            --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
            --shadow-xl: 0 35px 60px -12px rgba(0, 0, 0, 0.9);
            --scrollbar-track: #1c1c1e;
            --scrollbar-thumb: #39393a;
            --scrollbar-hover: #dd023c;
        }

        /* Match existing base CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            font-weight: 300;
            margin: 0;
            padding: 0;
            background-color: var(--dark-bg);
            background-image:
                radial-gradient(circle at 20% 80%, rgba(221, 2, 60, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(221, 2, 60, 0.1) 0%, transparent 60%);
            color: white;
            font-size: 1.25rem;
            min-height: 100vh;
            overflow-x: hidden;
            /* Inherit scrollbar styling */
            scrollbar-width: thin;
            scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
        }

        /* Scrollbar styling to match base CSS */
        html::-webkit-scrollbar {
            width: 13px;
        }

        html::-webkit-scrollbar-track {
            background: var(--scrollbar-track);
            border-radius: 5px;
        }

        html::-webkit-scrollbar-thumb {
            background: var(--scrollbar-thumb);
            border-radius: 5px;
            border: 2px solid var(--scrollbar-track);
        }

        html::-webkit-scrollbar-thumb:hover {
            background: var(--scrollbar-hover);
        }

        .hero {
            position: relative;
            margin-top: 80px;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }


        @keyframes gridMove {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(10px, 10px);
            }
        }

        .hero .title {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero .title h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin: 0;
            background: linear-gradient(45deg, #ffffff, #f0f8ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        @keyframes titleGlow {
            0% {
                filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
            }

            100% {
                filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
            }
        }

        .faq-section {
            max-width: 1000px;
            margin: -50px auto 4rem;
            padding: 0 1.5rem;
            position: relative;
            z-index: 10;
        }

        .faq-container {
            background: rgba(28, 28, 30, 0.8);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 3rem;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-xl);
            position: relative;
            overflow: hidden;
        }

        .faq-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--primary-gradient);
            opacity: 0.6;
        }

        /* FAQ Header Flex Row */
        .faq-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        /* Back Link */
        .back-link {
            display: flex;
            align-items: center;
            font-size: 1rem;
            text-decoration: none;
            transition: color 0.2s ease;
            border-radius: 10px;
            color: #fff;
            padding: 10px 12px;
            background-color: #1e1e1e;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
            margin: 0;
            z-index: 1000;
            /* Removed margin-bottom to avoid pushing */
        }

        .back-link i {
            margin-right: 6px;
        }

        .back-link:hover {
            color: #dd023c;
        }

        /* Title */
        .faq-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 700;
            text-align: center;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            margin: 0 auto;
            /* Center the title */
            margin-left: -100px;
            flex-grow: 1;
        }

        /* Keep animated underline */
        .faq-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 2px;
            animation: titleUnderline 2s ease-in-out infinite alternate;
        }

        /* Optional: Responsive Adjustments */
        @media (max-width: 600px) {
            .faq-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .faq-title {
                text-align: left;
                margin-top: 10px;
            }
        }


        @keyframes titleUnderline {
            0% {
                width: 60px;
                opacity: 0.7;
            }

            100% {
                width: 80px;
                opacity: 1;
            }
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border-radius: 16px;
            overflow: hidden;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .faq-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .faq-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .faq-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .faq-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        .faq-item:nth-child(5) {
            animation-delay: 0.5s;
        }

        .faq-item:nth-child(6) {
            animation-delay: 0.6s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .faq-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(221, 2, 60, 0.5);
        }

        .faq-item.active {
            background: var(--card-hover);
            border-color: var(--accent-color);
            box-shadow: 0 0 30px rgba(221, 2, 60, 0.3);
        }

        .accordion {
            background: transparent;
            color: var(--text-primary);
            cursor: pointer;
            padding: 1.5rem 2rem;
            border: none;
            outline: none;
            width: 100%;
            text-align: left;
            font-size: 1.125rem;
            font-weight: 400;
            font-family: 'Roboto', sans-serif;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .accordion:hover {
            color: var(--accent-color);
        }

        .accordion::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .accordion:hover::before,
        .accordion.active::before {
            opacity: 1;
        }

        .accordion-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.875rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .accordion.active .accordion-icon {
            transform: rotate(180deg);
            background: var(--secondary-gradient);
        }

        .panel {
            max-height: 0;
            padding: 0 2rem;
            background: rgba(28, 28, 30, 0.5);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-top: 1px solid transparent;
        }

        .panel.active {
            max-height: 500px;
            padding: 2rem;
            border-top-color: var(--border-color);
        }

        .panel p {
            margin: 0;
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 1rem;
            font-family: 'Roboto', sans-serif;
            font-weight: 300;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease 0.1s;
        }

        .panel.active p {
            opacity: 1;
            transform: translateY(0);
        }

        .panel a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }

        .panel a:hover {
            color: #ff4569;
        }

        .panel a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gradient);
            transition: width 0.3s ease;
        }

        .panel a:hover::after {
            width: 100%;
        }

        .search-container {
            margin-bottom: 2rem;
            position: relative;
        }

        .search-box {
            width: 100%;
            padding: 1rem 1.5rem 1rem 3rem;
            background: rgba(28, 28, 30, 0.8);
            border: 2px solid var(--border-color);
            border-radius: 50px;
            color: var(--text-primary);
            font-size: 1rem;
            font-family: 'Roboto', sans-serif;
            font-weight: 300;
            outline: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .search-box:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 20px rgba(221, 2, 60, 0.3);
        }

        .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-secondary);
            font-size: 1.125rem;
        }

        .stats-container {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(28, 28, 30, 0.6);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            min-width: 120px;
        }

        .stat-item:hover {
            transform: translateY(-2px);
            border-color: var(--accent-color);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        @media (max-width: 768px) {
            .faq-container {
                padding: 2rem 1.5rem;
                margin: -30px 1rem 2rem;
            }

            .accordion {
                padding: 1.25rem 1.5rem;
                font-size: 1rem;
            }

            .panel.active {
                padding: 1.5rem;
            }

            .stats-container {
                gap: 1rem;
            }

            .stat-item {
                padding: 1rem;
                min-width: 100px;
            }
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(245, 87, 108, 0.1));
            animation: float 20s infinite linear;
        }

        .floating-circle:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-circle:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 15%;
            animation-delay: -7s;
        }

        .floating-circle:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 20%;
            animation-delay: -14s;
        }

        @keyframes float {
            0% {
                transform: translateY(0px) rotate(0deg);
            }

            33% {
                transform: translateY(-30px) rotate(120deg);
            }

            66% {
                transform: translateY(30px) rotate(240deg);
            }

            100% {
                transform: translateY(0px) rotate(360deg);
            }
        }

        @media (max-width: 600px) {
            .faq-title {
                margin-left: 0;
                text-align: center;
                font-size: 1.8rem;
            }
        }

        @media (max-width: 600px) {
            .faq-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .back-link {
                align-self: center;
            }
        }

        @media (max-width: 480px) {
            .faq-container {
                padding: 1.5rem 1rem;
            }
        }

        @media (max-width: 500px) {
            .stats-container {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
            }

            .stat-item {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 600px) {
            .accordion {
                padding: 1.25rem 1rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 600px) {
            .accordion {
                padding: 1.25rem 1rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 600px) {
            .hero {
                margin-top: 60px;
                height: 250px;
                padding: 0 1rem;
            }

            .hero .title h1 {
                font-size: 2rem;
            }

            .search-container {
                margin-bottom: 1.5rem;
            }
        }