        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');
        
        :root {
    --primary: #46191c;
            --primary-light: #5c2428;
            --primary-dark: #805459;
            
            /* Secondary Colors */
            --secondary: #0f172a;
            --secondary-light: #1e293b;
            --secondary-dark: #464e77;
            
            /* Accent Colors */
            --accent: #d97706;
            --accent-light: #f59e0b;
            --accent-dark: #b45309;
            
            /* Special Colors */
            --saffron: #FF9933;
            --dark-900: #0f172a;
            --dark-800: #1e293b;
            --saffron: #FF9933;
        }
        
        body {
            font-family: 'Inter', sans-serif;
        }
        
        .font-display {
            font-family: 'Poppins', sans-serif;
        }
        
        .courses-hero {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
        }
        
        .dark .courses-hero {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
        }
        
        .wave-shape {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
        }
        
        .wave-shape svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 100px;
        }
        
        .wave-shape .shape-fill {
            fill: #FFFFFF;
        }
        
        .dark .wave-shape .shape-fill {
            fill: var(--dark-900);
        }
        
        .floating-shape {
            position: absolute;
            opacity: 0.1;
            z-index: 0;
        }
        
        .shape-1 {
            top: 20%;
            left: 5%;
            width: 100px;
            height: 100px;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            background: var(--primary-light);
            animation: float 8s ease-in-out infinite;
        }
        
        .shape-2 {
            bottom: 15%;
            right: 10%;
            width: 150px;
            height: 150px;
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            background: var(--secondary-light);
            animation: float 10s ease-in-out infinite;
            animation-delay: 1s;
        }
        
        .dark .floating-shape {
            opacity: 0.05;
        }
        
        .course-card {
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }
        
        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .dark .course-card {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.12);
        }
        
        .dark .course-card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
        }
        
        .course-tab {
            transition: all 0.3s ease;
        }
        
        .course-tab.active {
            background-color: var(--primary-light);
            color: white;
        }
        
        .dark .course-tab.active {
            background-color: var(--primary-dark);
        }
        
        .popular-badge {
            background-color: #3B82F6;
            color: white;
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.6rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .course-badge {
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.6rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .dark .popular-badge {
            background-color: var(--accent-dark);
        }
        
        .accordion-item {
            border-bottom: 1px solid #e5e7eb;
        }
        
        .dark .accordion-item {
            border-bottom-color: var(--dark-800);
        }
        
        .accordion-header {
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .accordion-content.open {
            max-height: 1000px;
        }
        
        .accordion-icon {
            transition: transform 0.3s ease;
        }
        
        .accordion-icon.open {
            transform: rotate(180deg);
        }
        
        /* Custom animations */
        @keyframes wave {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(-10px) translateX(5px); }
        }
        
        @keyframes progress {
            from { width: 0; }
            to { width: attr(data-width); }
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        .animate-wave {
            animation: wave 1.5s infinite ease-in-out;
        }
        
        .animate-float {
            animation: float 6s infinite ease-in-out;
        }
        
        .animate-progress {
            animation: progress 1s forwards ease-out;
        }
        
        .animate-bounce {
            animation: bounce 1s infinite ease-in-out;
        }
        
        .animate-pulse {
            animation: pulse 1.5s infinite ease-in-out;
        }
        
        .delay-100 {
            animation-delay: 0.1s;
        }
        
        .delay-200 {
            animation-delay: 0.2s;
        }
        
        .delay-1000 {
            animation-delay: 1s;
        }
        
        .delay-2000 {
            animation-delay: 2s;
        }
        
        .bg-saffron {
            background-color: var(--saffron);
        }
        
        .border-saffron {
            border-color: var(--saffron);
        }
        
        .popular-badge {
            background-color: var(--primary-light);
            color: white;
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.6rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .course-badge {
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.6rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }