    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            min-height: 100vh;
            background: linear-gradient(to bottom, #111827, #1f2937);
            color: #f1f5f9;
            line-height: 1.5;
            overflow-x: hidden;
        }

        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, #b91c1c, #ef4444, #b91c1c);
            background-size: 200% 100%;
            animation: gradientShift 3s ease infinite;
            z-index: 1000;
            width: 0;
            transition: width 0.1s ease;
            box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .bg-element {
            position: fixed;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(185, 28, 28, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: -1;
        }

        #bg-1 { 
            top: 10%; 
            left: 10%; 
            animation: float 20s infinite;
        }
        
        #bg-2 { 
            top: 60%; 
            right: 15%; 
            animation: float 25s infinite reverse;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
        }
        
        #bg-3 { 
            bottom: 20%; 
            left: 20%; 
            animation: float 22s infinite;
            background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
        }

        @keyframes float {
            0% { transform: translate(0, 0); }
            25% { transform: translate(50px, 50px); }
            50% { transform: translate(0, 100px); }
            75% { transform: translate(-50px, 50px); }
            100% { transform: translate(0, 0); }
        }

        .hero-header {
            position: relative;
            padding: 4rem 1rem;
            overflow: hidden;
        }

        .hero-header::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #111827 0%, #374151 50%, #111827 100%);
        }

        .hero-header::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(185, 28, 28, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .header-content {
            position: relative;
            z-index: 10;
            max-width: 80rem;
            margin: 0 auto;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .logo-container svg {
            width: 3rem;
            height: 3rem;
            color: #ef4444;
            animation: pulse 2s infinite;
            filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5));
        }

        @keyframes pulse {
            0% { 
                transform: scale(1); 
                filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5)); 
            }
            50% { 
                transform: scale(1.1); 
                filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.8)); 
            }
            100% { 
                transform: scale(1); 
                filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5)); 
            }
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 50%, #d1d5db 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleGlow 4s ease-in-out infinite alternate;
            margin-bottom: 1.5rem;
        }

        @keyframes titleGlow {
            0% { filter: drop-shadow(0 0 10px rgba(209, 213, 219, 0.3)); }
            100% { filter: drop-shadow(0 0 20px rgba(209, 213, 219, 0.6)); }
        }

        .header-text {
            font-size: 1.25rem;
            color: #d1d5db;
            max-width: 64rem;
            opacity: 0;
            animation: fadeIn 0.8s ease-out 0.4s forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .main-content {
            position: relative;
            z-index: 10;
            max-width: 80rem;
            margin: 0 auto;
            padding: 3rem 1rem;
        }

        .content-section {
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(30px);
            background: linear-gradient(135deg, 
                rgba(31, 41, 55, 0.9) 0%, 
                rgba(55, 65, 81, 0.8) 50%,
                rgba(31, 41, 55, 0.9) 100%);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(185, 28, 28, 0.2);
            border-radius: 1rem;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .content-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(185, 28, 28, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .section-visible {
            animation: slideUp 0.8s ease-out forwards;
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ef4444;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            position: relative;
            padding-bottom: 0.5rem;
            text-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 4rem;
            height: 4px;
            background: #ef4444;
            box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
            transition: width 0.3s ease;
        }

        .section-title:hover::after {
            width: 100%;
        }

        .section-title svg {
            width: 2.5rem;
            height: 2.5rem;
            filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5));
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5rem;
        }

        .program-card {
            background: linear-gradient(135deg, 
                rgba(55, 65, 81, 0.9) 0%, 
                rgba(75, 85, 99, 0.8) 50%,
                rgba(55, 65, 81, 0.9) 100%);
            border: 1px solid rgba(185, 28, 28, 0.1);
            border-radius: 0.75rem;
            padding: 1.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #b91c1c, #ef4444, #b91c1c);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .program-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(185, 28, 28, 0.15), 
                transparent);
            transition: left 0.6s ease;
        }

        .program-card:hover::before {
            transform: scaleX(1);
        }

        .program-card:hover::after {
            left: 100%;
        }

        .program-card.card-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .program-card:hover {
            border-color: rgba(185, 28, 28, 0.3);
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(185, 28, 28, 0.15);
            background: linear-gradient(135deg, 
                rgba(55, 65, 81, 1) 0%, 
                rgba(75, 85, 99, 0.95) 50%,
                rgba(55, 65, 81, 1) 100%);
        }

        .program-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #fca5a5;
            margin-bottom: 1rem;
            transition: color 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .program-card:hover h3 {
            color: #f87171;
        }

        .program-card p {
            color: #d1d5db;
            line-height: 1.6;
            transition: color 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .program-card:hover p {
            color: #e5e7eb;
        }

        .fees-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
        }

        .fee-card {
            background: linear-gradient(135deg, 
                rgba(55, 65, 81, 0.9) 0%, 
                rgba(75, 85, 99, 0.8) 50%,
                rgba(55, 65, 81, 0.9) 100%);
            border: 1px solid rgba(185, 28, 28, 0.1);
            border-radius: 0.75rem;
            padding: 1.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
        }

        .fee-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #b91c1c, #ef4444, #b91c1c);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .fee-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(185, 28, 28, 0.15), 
                transparent);
            transition: left 0.6s ease;
        }

        .fee-card:hover::before {
            transform: scaleX(1);
        }

        .fee-card:hover::after {
            left: 100%;
        }

        .fee-card.card-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fee-card:hover {
            border-color: rgba(185, 28, 28, 0.3);
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(185, 28, 28, 0.15);
        }

        .fee-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #fca5a5;
            margin-bottom: 1.5rem;
            transition: color 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .fee-card:hover h3 {
            color: #f87171;
        }

        .fee-list {
            list-style: none;
            position: relative;
            z-index: 2;
        }

        .fee-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            color: #d1d5db;
            transition: all 0.3s ease;
        }

        .fee-list li:hover {
            transform: translateX(10px);
            color: #fca5a5;
        }

        .fee-list li svg {
            width: 1.25rem;
            height: 1.25rem;
            color: #ef4444;
            flex-shrink: 0;
            margin-top: 0.25rem;
            filter: drop-shadow(0 0 5px rgba(239, 68, 68, 0.5));
        }

        .price {
            color: #fca5a5;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .price:hover {
            color: #f87171;
            text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
        }

        .cta-section {
            background: linear-gradient(135deg, 
                rgba(185, 28, 28, 0.95) 0%, 
                rgba(127, 29, 29, 1) 50%, 
                rgba(185, 28, 28, 0.95) 100%);
            border-radius: 1rem;
            padding: 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 50%, 
                rgba(255, 255, 255, 0.1) 0%, 
                transparent 50%);
            animation: ctaPulse 4s ease-in-out infinite;
        }

        @keyframes ctaPulse {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.05); }
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-title {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.875rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .cta-subtitle {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            font-size: 1.125rem;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.95) 0%, 
                rgba(243, 244, 246, 1) 100%);
            color: #b91c1c;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(185, 28, 28, 0.1), 
                transparent);
            transition: left 0.4s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.3);
            color: #7f1d1d;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.875rem;
            }

            .programs-grid {
                grid-template-columns: 1fr;
            }

            .fees-grid {
                grid-template-columns: 1fr;
            }

            .cta-section {
                padding: 2rem;
            }

            .cta-title {
                font-size: 1.5rem;
            }

            .cta-button {
                padding: 0.8rem 2rem;
                font-size: 0.9rem;
            }

            .bg-element {
                width: 200px;
                height: 200px;
            }
        }