
        :root {
            --primary: #0b2d79;
            --secondary: #6d2bdd;
            --accent: #d4af37;
            --dark: #051334;
            --light: #f8f9ff;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: linear-gradient(135deg, #6d2bdd  0%, #0b2d79  50%, #1a4fc4 100%);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
            padding: 30px 0;
        }

        /* Simplified decorative elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            opacity: 0.05;
            z-index: 0;
            animation: float 20s infinite linear;
            will-change: transform;
        }

        .element-1 {
            width: 200px;
            height: 200px;
            background: var(--secondary);
            top: 10%;
            right: -50px;
            animation-duration: 25s;
        }

        .element-2 {
            width: 150px;
            height: 150px;
            background: var(--accent);
            bottom: 10%;
            left: -30px;
            animation-duration: 20s;
            animation-delay: 2s;
        }

        /* Simplified geometric shapes */
        .geometric-shape {
            position: absolute;
            opacity: 0.03;
            z-index: 0;
            background: linear-gradient(45deg, transparent 40%, var(--accent) 40%, var(--accent) 60%, transparent 60%);
        }

        .shape-1 {
            width: 120px;
            height: 120px;
            top: 20%;
            right: 15%;
        }

        .shape-2 {
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, transparent 40%, var(--secondary) 40%, var(--secondary) 60%, transparent 60%);
            bottom: 20%;
            left: 15%;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        /* Return link */
        .return-link {
            display: inline-flex;
            align-items: center;
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            margin-bottom: 30px;
            transition: var(--transition);
            padding: 10px 20px;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .return-link:hover {
            color: var(--accent);
            border-color: var(--accent);
            transform: translateX(-5px);
        }

        .return-link i {
            margin-right: 8px;
            transition: var(--transition);
        }

        .return-link:hover i {
            transform: translateX(-5px);
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 30px 0 50px;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .pre-title {
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.9rem;
            color: var(--accent);
            margin-bottom: 15px;
            display: block;
            font-weight: 500;
        }

        .hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
            font-weight: 300;
        }

        /* Programs Section */
        .programs {
            padding: 30px 0 60px;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 25px;
        }

        .program-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .program-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            border-color: rgba(109, 43, 221, 0.3);
        }

        .card-header {
            padding: 20px 20px 15px;
            position: relative;
        }

        .program-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.1);
            position: absolute;
            top: 10px;
            right: 15px;
            z-index: 1;
        }

        .program-icon {
            font-size: 1.8rem;
            color: var(--accent);
            margin-bottom: 12px;
            display: inline-flex;
            width: 50px;
            height: 50px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
        }

        .program-title {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .program-title h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-right: 10px;
            color: white;
        }

        .program-title span {
            font-size: 1.2rem;
            color: var(--accent);
            font-weight: 500;
        }

        .card-content {
            padding: 0 20px 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .program-card p {
            margin-bottom: 20px;
            opacity: 0.9;
            font-size: 0.95rem;
            line-height: 1.6;
            flex-grow: 1;
            font-weight: 300;
        }

        .program-card .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 500;
            transition: var(--transition);
            width: fit-content;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .program-card .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }

        .program-card .cta-button i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .program-card .cta-button:hover i {
            transform: translateX(4px);
        }

        .card-footer {
            padding: 15px 20px;
            background: rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .program-tag {
            background: rgba(109, 43, 221, 0.2);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--accent);
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Optimized Animations */
        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(8px);
            }
            100% {
                transform: translateY(0);
            }
        }

        /* Reduced 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;
            }
            
            .floating-element, .geometric-shape {
                display: none;
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .programs-grid {
                grid-template-columns: 1fr;
            }
            
            .floating-element, .geometric-shape {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .program-title {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .program-title span {
                margin-top: 5px;
            }
            
            .program-card {
                margin: 0 5px;
            }
            
            .card-content {
                padding: 15px;
            }
        }