
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #000;
            color: #fff;
            font-family: 'Raleway', sans-serif;
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        /* Animated background particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }
        
        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            0% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        
        .header-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #fff, transparent);
        }
        
        h1 {
            font-family: 'Cinzel', serif;
            font-size: 3.5rem;
            margin-bottom: 20px;
            letter-spacing: 3px;
            text-transform: uppercase;
            opacity: 0;
            animation: fadeInUp 1s forwards 0.5s;
        }
        
        .subtitle {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: #ccc;
            max-width: 800px;
            margin: 0 auto 30px;
            font-style: italic;
            opacity: 0;
            animation: fadeInUp 1s forwards 0.8s;
        }
        
        .pencil-icon {
            display: inline-block;
            font-size: 2rem;
            margin: 0 15px;
            animation: pencilRotate 4s infinite linear;
        }
        
        @keyframes pencilRotate {
            0% { transform: rotate(0deg); }
            25% { transform: rotate(10deg); }
            75% { transform: rotate(-10deg); }
            100% { transform: rotate(0deg); }
        }
        
        h2 {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            margin: 60px 0 30px;
            text-align: center;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 15px;
            opacity: 0;
            animation: fadeInUp 1s forwards 1s;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #fff, transparent);
        }
        
        h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            margin-bottom: 20px;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        .course-description {
            background-color: rgba(20, 20, 20, 0.8);
            padding: 40px;
            border-radius: 2px;
            margin-bottom: 50px;
            border-left: 4px solid #fff;
            backdrop-filter: blur(10px);
            opacity: 0;
            animation: fadeInUp 1s forwards 1.2s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .duration {
            background-color: rgba(20, 20, 20, 0.8);
            padding: 30px;
            border-radius: 2px;
            margin-bottom: 50px;
            text-align: center;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            opacity: 0;
            animation: fadeInUp 1s forwards 1.4s;
            transition: transform 0.5s, box-shadow 0.5s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .duration:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }
        
        .duration p {
            font-size: 2.2rem;
            font-weight: bold;
            letter-spacing: 3px;
            font-family: 'Cinzel', serif;
        }
        
        .duration-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .highlights-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .highlight-card {
            background-color: rgba(20, 20, 20, 0.8);
            padding: 30px;
            border-radius: 2px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.5s ease;
            backdrop-filter: blur(10px);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s forwards;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        
        .highlight-card:nth-child(1) { animation-delay: 0.1s; }
        .highlight-card:nth-child(2) { animation-delay: 0.2s; }
        .highlight-card:nth-child(3) { animation-delay: 0.3s; }
        .highlight-card:nth-child(4) { animation-delay: 0.4s; }
        .highlight-card:nth-child(5) { animation-delay: 0.5s; }
        .highlight-card:nth-child(6) { animation-delay: 0.6s; }
        .highlight-card:nth-child(7) { animation-delay: 0.7s; }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .highlight-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }
        
        .highlight-card ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        .highlight-card li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            padding-left: 30px;
            transition: padding-left 0.3s;
        }
        
        .highlight-card li:hover {
            padding-left: 40px;
        }
        
        .highlight-card li:last-child {
            border-bottom: none;
        }
        
        .highlight-card li::before {
            content: '→';
            position: absolute;
            left: 0;
            top: 12px;
            color: #fff;
            font-weight: bold;
            transition: transform 0.3s;
        }
        
        .highlight-card li:hover::before {
            transform: translateX(5px);
        }
        
        .note {
            background-color: rgba(20, 20, 20, 0.8);
            padding: 40px;
            border-radius: 2px;
            margin-bottom: 60px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            opacity: 0;
            animation: fadeInUp 1s forwards 1.6s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .note h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .note-icon {
            font-size: 1.8rem;
            animation: notePulse 3s infinite;
        }
        
        @keyframes notePulse {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(5deg); }
            75% { transform: rotate(-5deg); }
        }
        
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            margin: 60px 0;
            opacity: 0;
            animation: fadeIn 1s forwards 1.8s;
        }
        
        @keyframes fadeIn {
            to { opacity: 1; }
        }
        
        .enroll-section {
            text-align: center;
            padding: 60px 20px;
            position: relative;
            opacity: 0;
            animation: fadeInUp 1s forwards 2s;
        }
        
        .enroll-section h2 {
            margin-bottom: 30px;
        }
        
        .enroll-btn {
            display: inline-block;
            background-color: transparent;
            color: #fff;
            font-family: 'Cinzel', serif;
            font-weight: bold;
            font-size: 1.2rem;
            padding: 18px 50px;
            border: 2px solid #fff;
            border-radius: 0;
            text-decoration: none;
            margin-top: 20px;
            transition: all 0.5s ease;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        .enroll-btn::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.7s;
            z-index: -1;
        }
        
        .enroll-btn:hover::before {
            left: 100%;
        }
        
        .enroll-btn:hover {
            background-color: #fff;
            color: #000;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
        }
        
        footer {
            text-align: center;
            padding: 50px 20px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888;
            font-size: 0.9rem;
            opacity: 0;
            animation: fadeIn 1s forwards 2.2s;
        }
        
        .footer-line {
            width: 100px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #fff, transparent);
            margin: 20px auto;
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
                letter-spacing: 2px;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .highlights-container {
                grid-template-columns: 1fr;
            }
            
            .container {
                padding: 15px;
            }
            
            .course-description, .duration, .highlight-card, .note {
                padding: 25px;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
            
            .enroll-btn {
                padding: 15px 30px;
                font-size: 1rem;
            }
            
            .pencil-icon {
                font-size: 1.5rem;
                margin: 0 10px;
            }
        }
        
        /* Scroll animation */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s, transform 0.8s;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }


