    /* Custom styles and animations */
        body {
            background-color: #04040e;
            color: #e0e0e0;
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        /* Hero section specific styles */
        #hero {
            background: radial-gradient(ellipse at center, #0a0a20 0%, #04040e 100%);
        }
        .text-neon-cyan {
            color: #00f6ff;
            text-shadow: 0 0 8px rgba(0, 246, 255, 0.6), 0 0 15px rgba(0, 246, 255, 0.4);
        }

        /* Card and button hover effects */
        .card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 0 25px rgba(0, 246, 255, 0.25);
        }

        .cta-button {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(0, 246, 255, 0.5);
        }

        /* Section dividers */
        .section-divider {
            height: 1px;
            width: 100%;
            background-image: linear-gradient(to right, transparent, rgba(0, 246, 255, 0.2), transparent);
            margin: 4rem 0;
        }

        /* Scroll reveal animation */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1), transform 1s cubic-bezier(0.645, 0.045, 0.355, 1);
        }
        .scroll-reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Timeline styles */
        .timeline-item {
            position: relative;
            padding-left: 2.5rem;
            border-left: 2px solid #00f6ff;
            margin-left: 1.5rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 0;
            width: 16px;
            height: 16px;
            background-color: #00f6ff;
            border-radius: 50%;
            border: 4px solid #04040e;
        }

        /* Particles background for hero section */
        #particle-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
