 /* Custom styles for the page */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #050505;
            color: #E0E0E0;
        }

        /* Aurora-style background gradient for the hero section */
        .aurora-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(217, 70, 239, 0.15), transparent),
                              radial-gradient(ellipse 80% 50% at 50% 120%, rgba(124, 58, 237, 0.1), transparent);
            -webkit-mask-image: radial-gradient(rgba(0,0,0,1), transparent 70%);
            mask-image: radial-gradient(rgba(0,0,0,1), transparent 70%);
            z-index: -1;
            animation: aurora-glow 15s infinite alternate;
        }

        @keyframes aurora-glow {
            from {
                opacity: 0.6;
                transform: scale(1);
            }
            to {
                opacity: 1;
                transform: scale(1.1);
            }
        }
        
        /* Primary button styles */
        .btn-primary {
            background: linear-gradient(95deg, #EC4899 0%, #D946EF 100%);
            color: white;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
            transform: perspective(1px) translateZ(0);
        }
        .btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
        }

        /* Secondary button styles */
        .btn-secondary {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }
        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        /* Gradient text for titles */
        .gradient-text {
            background: linear-gradient(95deg, #EC4899 0%, #D946EF 50%, #8B5CF6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
        }

        /* Animated gradient border for feature cards */
        .feature-card {
            position: relative;
            background-color: #111111;
            border: 1px solid #222;
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transform: translateY(0);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 1rem;
            border: 2px solid transparent;
            background: linear-gradient(120deg, #EC4899, #8B5CF6, #EC4899) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: destination-out;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
            animation: spin 4s linear infinite;
        }
        .feature-card:hover::before {
            opacity: 1;
        }
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Scroll-triggered animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* FAQ Accordion styles */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out;
        }