        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        nav {
            background: #000000;
            border-bottom: 2px solid #dc2626;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }
        
        .logo {
            color: #dc2626;
            font-size: 1.8em;
            font-weight: bold;
            text-decoration: none;
            padding: 15px 0;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 5px;
            align-items: center;
        }
        
        .nav-links li {
            position: relative;
        }
        
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            padding: 20px 15px;
            display: block;
            font-size: 0.95em;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }
        
        .nav-links a:hover {
            color: #dc2626;
            border-bottom-color: #dc2626;
            background: rgba(220, 38, 38, 0.1);
        }
        
        .dropdown {
            position: relative;
        }
        
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #1a1a1a;
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
            border: 1px solid #dc2626;
            border-top: none;
            z-index: 1001;
        }
        
        .dropdown:hover .dropdown-menu {
            display: block;
        }
        
        .dropdown-menu a {
            padding: 12px 20px;
            border-bottom: 1px solid #2a2a2a;
        }
        
        .dropdown-menu a:last-child {
            border-bottom: none;
        }
        
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.5em;
            cursor: pointer;
            padding: 10px;
        }
        
        @media (max-width: 1024px) {
            .mobile-toggle {
                display: block;
            }
            
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #000000;
                flex-direction: column;
                gap: 0;
                border-top: 2px solid #dc2626;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links a {
                border-bottom: 1px solid #2a2a2a;
                border-bottom: 1px solid #2a2a2a;
            }
            
            .dropdown-menu {
                position: static;
                display: none;
                box-shadow: none;
                border: none;
                background: #0a0a0a;
            }
            
            .dropdown.active .dropdown-menu {
                display: block;
            }
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background: #000000;
        }
        
        .hero {
            background: linear-gradient(135deg, #000000 0%, #1a0000 100%);
            color: white;
            padding: 80px 20px 60px;
            text-align: center;
            border-bottom: 3px solid #dc2626;
        }
        
        .hero h1 {
            font-size: 3em;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .hero p {
            font-size: 1.3em;
            max-width: 900px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }
        
        .video-container {
            max-width: 900px;
            margin: 0px auto 0;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 20px rgba(0,0,0,0.3);
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .video-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #1a1a1a 25%, #2d2d2d 25%, #2d2d2d 50%, #1a1a1a 50%, #1a1a1a 75%, #2d2d2d 75%, #2d2d2d);
            background-size: 10px 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: #888;
        }
        
        .video-placeholder svg {
            width: 20px;
            height: 20px;
            margin-bottom: 15px;
            opacity: 0.5;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section {
            padding: 60px 20px;
            background: #1a1a1a;
            margin: 40px 0;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(220, 38, 38, 0.2);
            border: 1px solid #2a2a2a;
        }
        
        .section h2 {
            font-size: 2.5em;
            color: #dc2626;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .section h3 {
            font-size: 1.8em;
            color: #ffffff;
            margin: 30px 0 15px;
        }
        
        .how-it-works {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .step {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a0000 100%);
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #3a3a3a;
        }
        
        .step:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(220, 38, 38, 0.5);
            border-color: #dc2626;
        }
        
        .step-number {
            background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .benefit-card {
            background: #0a0a0a;
            padding: 30px;
            border-left: 4px solid #dc2626;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
            border: 1px solid #2a2a2a;
        }
        
        .benefit-card h4 {
            color: #dc2626;
            font-size: 1.3em;
            margin-bottom: 10px;
        }
        
        .programs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .program-card {
            background: #1a1a1a;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
            transition: transform 0.3s ease;
            border: 1px solid #2a2a2a;
        }
        
        .program-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(220, 38, 38, 0.5);
            border-color: #dc2626;
        }
        
        .program-header {
            background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
            color: white;
            padding: 30px;
            text-align: center;
        }
        
        .program-header h3 {
            color: white;
            margin: 0;
            font-size: 1.6em;
        }
        
        .program-body {
            padding: 30px;
        }
        
        .program-body ul {
            list-style: none;
            margin: 20px 0;
        }
        
        .program-body li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
        }
        
        .program-body li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #dc2626;
            font-weight: bold;
            font-size: 1.2em;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1em;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
            margin: 10px;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
        }
        
        .cta-section {
            text-align: center;
            margin: 30px 0;
        }
        
        .faq {
            margin-top: 40px;
        }
        
        .faq-item {
            background: #0a0a0a;
            padding: 25px;
            margin: 15px 0;
            border-radius: 8px;
            border-left: 4px solid #dc2626;
            border: 1px solid #2a2a2a;
            border-left: 4px solid #dc2626;
        }
        
        .faq-item h4 {
            color: #dc2626;
            margin-bottom: 10px;
            font-size: 1.2em;
        }
        
        .credentials {
            background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
            color: white;
            padding: 40px;
            border-radius: 12px;
            text-align: center;
            margin: 40px 0;
        }
        
        .credentials h3 {
            color: white;
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2em;
            }
            
            .hero p {
                font-size: 1.1em;
            }
            
            .section h2 {
                font-size: 2em;
            }
        }
    
