* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 600px;
            background: linear-gradient(135deg, #090a0a 0%, #f7a10294 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            padding: 1rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.37) 2px, transparent 2px),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.15) 1px, transparent 1px),
                radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.308) 3px, transparent 3px),
                radial-gradient(circle at 60% 30%, rgba(255,255,255,0.12) 1.5px, transparent 1.5px),
                radial-gradient(circle at 30% 90%, rgba(255,255,255,0.1) 2.5px, transparent 2.5px);
            background-size: 100px 100px, 150px 150px, 80px 80px, 120px 120px, 90px 90px;
            animation: particleFlow 30s both infinite;
        }

        @keyframes particleFlow {
            0% { 
                transform: translateX(0) translateY(0);
                opacity: 0.6;
            }
            25% { 
                transform: translateX(-50px) translateY(-30px);
                opacity: 1;
            }
            50% { 
                transform: translateX(-100px) translateY(-60px);
                opacity: 0.6;
            }
            75% { 
                transform: translateX(-50px) translateY(-30px);
                opacity: 1;
            }
            100% { 
                transform: translateX(0) translateY(0);
                opacity: 0.6;
            }
        }

        .hero-content {
            z-index: 2;
            max-width: 800px;
            width: 100%;
            padding: 0 1rem;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 4rem);
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.5s forwards;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: clamp(1.1rem, 4vw, 1.5rem);
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 1s ease-out 1s forwards;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: clamp(1rem, 3vw, 1.2rem);
            font-weight: bold;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeInUp 1s ease-out 1.5s forwards;
            min-width: 200px;
            touch-action: manipulation;
        }

        .cta-button:hover,
        .cta-button:active {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        .reg-button {
            display: inline-block;
            padding: 15px 30px;
            background: rgba(20, 130, 255, 0.404);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: clamp(1rem, 3vw, 1.2rem);
            font-weight: bold;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(95, 151, 255, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeInUp 1s ease-out 1.5s forwards;
            min-width: 200px;
            touch-action: manipulation;
        }

        .reg-button:hover,
        .reg-button:active {
            background: rgba(20, 130, 255, 0.504);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 0.5rem 1rem;
            transform: translateY(-100%);
            transition: transform 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav.visible {
            transform: translateY(0);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-brand {
            font-size: 1.2rem;
            font-weight: bold;
            color: #f7a10294;
        }

        .nav-menu {
            font-size: 0.9rem;
            display: flex;
            list-style: none;
            gap: 1rem;
            margin: 0;
            white-space: nowrap;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            background: none;
            border: none;
        }

        .nav-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            touch-action: manipulation;
        }

        nav a:hover,
        nav a:active {
            color: #f7a10294;
            background: rgba(102, 126, 234, 0.1);
        }

        /* Sections */
        .section {
            padding: 4rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section:nth-child(even) {
            background: #f8f9fa;
        }

        .section h2 {
            font-size: clamp(2rem, 6vw, 2.5rem);
            margin-bottom: 1.5rem;
            text-align: center;
            color: #333;
            position: relative;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, #f7a10294, #030303);
            border-radius: 2px;
        }

        .section p {
            font-size: clamp(1rem, 3vw, 1.2rem);
            line-height: 1.8;
            margin-bottom: 2rem;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Grid Layout for Content Sections */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            touch-action: manipulation;
        }

        .card:hover,
        .card:active {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .card h3 {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            margin-bottom: 1rem;
            color: #f7a10294;
        }

        .card p {
            text-align: left;
            margin-bottom: 0;
            font-size: 1rem;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            text-align: center;
            padding: 4rem 1rem;
        }

        .contact h2 {
            color: white;
            margin-bottom: 2rem;
        }

        .contact p {
            font-size: clamp(1rem, 3vw, 1.2rem);
            margin-bottom: 2rem;
        }

        .submit-btn {
            padding: 1rem 2rem;
            background: #667eea;
            color: white;
            border: none;
            border-radius: 50px;
            font-size: clamp(1rem, 3vw, 1.1rem);
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 2rem;
            min-width: 200px;
            touch-action: manipulation;
        }

        .submit-btn:hover,
        .submit-btn:active {
            background: #5a67d8;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: white;
            padding: 3rem 1rem 1rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
            white-space: nowrap;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #667eea;
            font-size: 1.1rem;
        }

        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.6;
            margin-bottom: 0.5rem;
            display: block;
        }

        .footer-section a:hover,
        .footer-section a:active {
            color: #667eea;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 1rem;
            font-size: 0.9rem;
            color: #999;
        }

        /* Mobile Specific Styles */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                transition: left 0.3s ease;
                padding-top: 2rem;
                gap: 1.5rem;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-toggle.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .nav-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .nav-toggle.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .nav-menu a {
                font-size: 1.2rem;
                padding: 1rem 2rem;
                width: 80%;
                text-align: center;
                border-radius: 10px;
            }

            .hero {
                min-height: 100vh;
                padding: 2rem 1rem;
            }

            .section {
                padding: 3rem 1rem;
            }

            .grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .card {
                padding: 1.5rem;
            }

            .contact {
                padding: 3rem 1rem;
            }

            .footer {
                padding: 2rem 1rem 1rem;
            }

            .footer-content {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 1rem;
            }

            .hero-content {
                padding: 0;
            }

            .cta-button {
                padding: 12px 24px;
                min-width: 180px;
            }

            .section {
                padding: 2rem 1rem;
            }

            .card {
                padding: 1rem;
            }

            .grid {
                gap: 1rem;
            }

            .submit-btn {
                padding: 0.8rem 1.5rem;
                min-width: 180px;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Touch improvements */
        @media (hover: none) and (pointer: coarse) {
            .card:hover {
                transform: none;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            }
            
            .cta-button:hover,
            .submit-btn:hover {
                transform: none;
            }
        }

        /* Reduce motion for users who prefer it */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            
            .hero::before {
                animation: none;
            }
        }