* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
        --primary: #6366f1;
        --secondary: #ec4899;
        --dark: #ffffff;              /* White background */
        --dark-lighter: #f8fafc;      /* Light gray background */
        --text: #0f172a;              /* Dark text */
        --text-soft: #64748b;         /* Medium gray text */
        --gradient: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    }

        body {
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        background: #f1f5f9;          /* Light background */
        color: var(--text);
        overflow-x: hidden;
    }

        h1, h2, h3 {
            font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 20px;
        }

        /* NAVBAR */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 20px;
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.95);  
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(99, 102, 241, 0.15);
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .logo {
            font-size: 35px;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        nav ul {
            display: flex;
            gap: 35px;
            list-style: none;
            }

        .nav-links {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap:35px;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }

        /* HERO SECTION */
        .faqs-hero {
            text-align: center;
            padding: 120px 20px 60px;
            position: relative;
            overflow: hidden;
        }

        .faqs-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
            pointer-events: none;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
            50% { transform: translateX(-50%) scale(1.1); opacity: 0.8; }
        }

        .faqs-hero h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease;
            position: relative;
            z-index: 1;
        }

        .faqs-hero p {
            font-size: 20px;
            color: var(--text-soft);
            max-width: 600px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease 0.2s backwards;
            position: relative;
            z-index: 1;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* SEARCH BAR */
        .faq-search {
            max-width: 600px;
            margin: 40px auto;
            padding: 0 20px;
            position: relative;
        }

        .faq-search i {
            position: absolute;
            left: 40px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-soft);
            font-size: 18px;
        }

        .faq-search input {
            width: 100%;
            padding: 18px 20px 18px 55px;
            background: var(--dark-lighter);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 50px;
            color: var(--text);
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .faq-search input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.08);
        }

        .faq-search input::placeholder {
            color: var(--text-soft);
        }

        /* FAQ SECTION */
        .faq-section {
            max-width: 900px;
            margin: 40px auto 100px;
            padding: 0 20px;
        }

        .faq-categories {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .category-tag {
            padding: 10px 24px;
            background: rgba(99, 102, 241, 0.08);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 50px;
            color: var(--text);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .category-tag:hover,
        .category-tag.active {
            background: var(--gradient);
            border-color: transparent;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
        }

        .faq-item {
            background: var(--dark-lighter);
            border-radius: 20px;
            margin-bottom: 20px;
            overflow: hidden;
            border: 1px solid rgba(99, 102, 241, 0.2);
            transition: all 0.3s ease;
            animation: fadeInUp 0.6s ease backwards;
        }

        .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; }
        .faq-item:nth-child(7) { animation-delay: 0.7s; }
        .faq-item:nth-child(8) { animation-delay: 0.8s; }

        .faq-item:hover {
            border-color: rgba(99, 102, 241, 0.3);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
        }

        .faq-item.active {
            border-color: var(--primary);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
        }

        .faq-question {
            width: 100%;
            padding: 25px 30px;
            background: transparent;
            border: none;
            color: var(--text);
            font-size: 18px;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-icon {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(99, 102, 241, 0.08);
            border-radius: 50%;
            font-size: 20px;
            transition: all 0.3s ease;
            flex-shrink: 0;
            margin-left: 15px;
        }

        .faq-item.active .faq-icon {
            background: var(--gradient);
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 30px 25px 30px;
        }

        .faq-answer p {
            color: var(--text-soft);
            line-height: 1.8;
            font-size: 15px;
        }

        .no-results {
            text-align: center;
            padding: 60px 20px;
            color: var(--text-soft);
            display: none;
        }

        .no-results i {
            font-size: 48px;
            margin-bottom: 20px;
            opacity: 0.5;
        }

        .no-results p {
            font-size: 18px;
        }

        /* CTA SECTION */
        .faq-cta {
            text-align: center;
            padding: 60px 20px;
            margin: 60px 20px 40px;
            background: var(--dark-lighter);
            border-radius: 25px;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .faq-cta h2 {
            font-size: 32px;
            margin-bottom: 15px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .faq-cta p {
            color: var(--text-soft);
            font-size: 16px;
            margin-bottom: 30px;
        }

        .cta-btn {
            display: inline-block;
            padding: 16px 40px;
            background: var(--gradient);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
        }

        .cta-btn:hover::before {
            left: 100%;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
        }

        /* FOOTER */
        footer {
            background: var(--dark-lighter);
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid rgba(99, 102, 241, 0.08);
        }

        footer p {
            color: var(--text-soft);
            font-size: 14px;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .faqs-hero h1 {
                font-size: 36px;
            }

            .faqs-hero p {
                font-size: 16px;
            }

            .nav-links {
                gap: 15px;
                font-size: 14px;
            }

            .faq-question {
                font-size: 16px;
                padding: 20px;
            }

            .faq-item.active .faq-answer {
                padding: 0 20px 20px 20px;
            }

            .faq-cta h2 {
                font-size: 24px;
            }
        }