
        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #000033 0%, #1a1a4d 100%);
            color: #E0E7FF;
            scroll-behavior: smooth;
        }

        .text-gold {
            color: #FFD700;
        }

        .text-accent {
            color: #64FFDA;
        }

        .bg-gradient-gold {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
        }

        .bg-gradient-gold-pink {
            background: linear-gradient(135deg, #FFD700 0%, #c70074 100%);
        }

        .bg-gradient-primary {
            background: linear-gradient(135deg, #000033 0%, #1a1a4d 50%, #2d1b69 100%);
        }

        .bg-gradient-card {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(26, 26, 77, 0.3) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .bg-gradient-hero {
            background: linear-gradient(135deg, #000033 0%, #1a1a4d 50%, #2d1b69 100%);
            position: relative;
            overflow: hidden;
        }

        .bg-gradient-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(100, 255, 218, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #000033;
            font-weight: 700;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
            background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
        }

        .section-heading {
            font-size: 2.5rem;
            font-weight: 800;
            color: #FFD700;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(135deg, #FFD700 0%, #64FFDA 100%);
            border-radius: 2px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .card:hover::before {
            opacity: 1;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 215, 0, 0.4);
        }

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

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

        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }

        .pulse-glow {
            animation: pulse-glow 2s ease-in-out infinite alternate;
        }

        @keyframes pulse-glow {
            from { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
            to { box-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .vsl-placeholder {
            background: linear-gradient(135deg, #1a1a4d 0%, #2d1b69 100%);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 16px;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .vsl-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .play-button:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
        }

        .play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 20px solid #000033;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 5px;
        }

        .table-container {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .table-container table {
            width: 100%;
            border-collapse: collapse;
        }

        .table-container th {
            background: linear-gradient(135deg, #1a1a4d 0%, #2d1b69 100%);
            color: #FFD700;
            padding: 1.5rem;
            text-align: left;
            font-weight: 700;
            border-bottom: 2px solid rgba(255, 215, 0, 0.3);
        }

        .table-container td {
            padding: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: background 0.3s ease;
        }

        .table-container tr:hover td {
            background: rgba(255, 215, 0, 0.05);
        }

        .form-container {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 16px;
            padding: 2rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .form-input {
            width: 100%;
            padding: 12px 16px;
            margin-bottom: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 8px;
            color: #E0E7FF;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #FFD700;
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
        }

        .form-input::placeholder {
            color: rgba(224, 231, 255, 0.6);
        }

        .navbar {
            background: rgba(0, 0, 51, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(0, 0, 51, 0.95);
            backdrop-filter: blur(20px);
        }

        .nav-link {
            color: #E0E7FF;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: #FFD700;
            background: rgba(255, 215, 0, 0.1);
        }

        .hero-content {
            padding-top: 20px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #FFD700 0%, #64FFDA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(224, 231, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .urgency-banner {
            background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            display: inline-block;
            margin-top: 1rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .instructor-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 16px;
            padding: 2rem;
            display: flex;
            align-items: center;
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .instructor-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 3px solid #FFD700;
            object-fit: cover;
            flex-shrink: 0;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 1rem;
            font-size: 4rem;
            color: rgba(255, 215, 0, 0.3);
            font-family: serif;
        }

        .testimonial-text {
            font-size: 1.125rem;
            font-style: italic;
            color: rgba(224, 231, 255, 0.9);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            font-weight: 600;
            color: #FFD700;
        }

        .testimonial-role {
            color: rgba(224, 231, 255, 0.7);
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .section-heading {
                font-size: 2rem;
            }

            .instructor-card {
                flex-direction: column;
                text-align: center;
            }

            .instructor-avatar {
                width: 120px;
                height: 120px;
            }

            .table-container {
                overflow-x: auto;
            }

            .container {
                padding: 0 15px;
            }
        }

        /* Hero Section CTA Styling */
.cta-container {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

/* Keywords Animation Container */
.keywords-animation-container {
    position: relative;
    height: 80px;
    overflow: hidden;
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 51, 0.6) 0%, rgba(26, 26, 77, 0.6) 100%);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
}

.keywords-animation-container::before,
.keywords-animation-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 3;
    pointer-events: none;
}

.keywords-animation-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 51, 1) 0%, rgba(0, 0, 51, 0.8) 50%, transparent 100%);
}

.keywords-animation-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 51, 1) 0%, rgba(0, 0, 51, 0.8) 50%, transparent 100%);
}

/* Keywords Track */
.keywords-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: slideKeywords 20s linear infinite;
    gap: 2rem;
    padding: 0 2rem;
}

/* Individual Keyword Items */
.keyword-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: #64FFDA;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 10px;
    border: 1px solid rgba(100, 255, 218, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.keyword-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.keyword-item:hover::before {
    left: 100%;
}

.keyword-item:hover {
    transform: scale(1.05);
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    border-color: rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(100, 255, 218, 0.1) 100%);
}

/* Keyword Separators */
.keyword-separator {
    font-size: 2rem;
    font-weight: 300;
    color: rgba(255, 215, 0, 0.6);
    margin: 0 1rem;
    flex-shrink: 0;
}

/* Sliding Animation */
@keyframes slideKeywords {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* CTA Description */
.cta-description {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(224, 231, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Enhanced Primary Button */
.btn-primary-large {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000033;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 15px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary-large:hover::before {
    left: 100%;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-heading {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .keyword-item {
        font-size: 1.2rem;
        padding: 0.4rem 0.8rem;
    }

    .keyword-separator {
        font-size: 1.5rem;
        margin: 0 0.5rem;
    }

    .keywords-animation-container {
        height: 60px;
    }

    .keywords-track {
        gap: 1rem;
        padding: 0 1rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .btn-primary-large {
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cta-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .cta-heading {
        font-size: 1.3rem;
    }

    .keyword-item {
        font-size: 1rem;
        padding: 0.3rem 0.6rem;
    }

    .keywords-animation-container {
        height: 50px;
    }

    .keywords-track {
        animation-duration: 25s; /* Slower on mobile for better readability */
    }
}


/* Notification Styles */
.form-notification {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    opacity: 1;
}

.form-notification.success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(21, 128, 61, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-notification.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(185, 28, 28, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
}

.notification-icon {
    font-size: 1.2rem;
}

.notification-message {
    text-align: center;
}

/* Language Switcher Styles */
.language-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px; /* Pill shape */
    padding: 4px;
    margin-left: 1.5rem; /* Adds space between nav links and button */
}

.lang-option {
    padding: 6px 14px;
    color: #E0E7FF;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: block;
}

.lang-option.active {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000033;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.lang-option:not(.active):hover {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
}