        :root {
            /* ====== MAIN THEME COLOR ====== */
            --main-color: #e61010;
            /* 🔴 غيّر قيمت الهيكس هنا لتغيير لون الثيم بالكامل 🔴 */

            --tomato-500: var(--main-color);
            --tomato-600: color-mix(in srgb, var(--main-color) 85%, black);
            --tomato-50: color-mix(in srgb, var(--main-color) 10%, white);
            --sakrGreen-400: #4ade80;
            --sakrGreen-500: #22c55e;
            --primary-container: #333355;
            --text-primary: #1e1e2f;
            --text-secondary: #6b7280;
            --third-container: #f8f8f8;
            --navbar-height: 72px;
            --bg-body: #ffffff;
            --bg-card: #f8f8f8;
        }

        /* ===== DARK MODE ===== */
        [data-theme="dark"] {
            --bg-body: #0f0f1a;
            --text-primary: #e8e8f0;
            --text-secondary: #9ca3af;
            --primary-container: #1a1a30;
            --third-container: #1e1e30;
            --bg-card: #1e1e30;
        }

        [data-theme="dark"] body {
            background: var(--bg-body);
            color: var(--text-primary);
        }

        [data-theme="dark"] .navbar {
            background: var(--primary-container);
        }

        [data-theme="dark"] .gallery-card-info {
            background: var(--third-container);
        }

        [data-theme="dark"] .course-card {
            background: var(--third-container);
            border-color: var(--third-container);
        }

        [data-theme="dark"] .about-feat-item .icon-box {
            background: var(--third-container);
            color: var(--text-primary);
        }

        [data-theme="dark"] .footer {
            background: var(--primary-container);
        }

        [data-theme="dark"] .btn-all {
            background: #fff;
            color: #000;
            border-color: #fff;
        }

        [data-theme="dark"] .btn-all:hover {
            background: transparent;
            color: #fff;
        }

        [data-theme="dark"] .slider-nav-btn {
            background: var(--third-container);
            border-color: #333;
            color: var(--text-primary);
        }

        [data-theme="dark"] .why-section h2,
        [data-theme="dark"] .courses-header h2,
        [data-theme="dark"] .about-text h2 {
            color: var(--text-primary);
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background: var(--bg-body);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            transition: background 0.3s, color 0.3s;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .smooth {
            transition: all 0.3s ease;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 40;
            margin: 16px 32px;
            border-radius: 16px;
            background: var(--bg-card);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
            height: var(--navbar-height);
            display: flex;
            align-items: center;
        }

        @media(min-width:769px) {
            .navbar {
                border-radius: 9999px;
            }
        }

        .navbar-inner {
            width: 100%;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        /* Right side: Logo */
        .navbar-brand {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .navbar-brand a {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .navbar-logo-text {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .navbar-logo-text .the-t {
            color: #fff;
            font-size: 15px;
            font-weight: 800;
            letter-spacing: 0.5px;
        }

        .navbar-logo-text .legend-t {
            color: var(--tomato-500);
            font-size: 22px;
            font-weight: 900;
            font-style: italic;
        }

        .navbar-logo-text i {
            color: var(--tomato-500);
            font-size: 18px;
        }

        /* Center: social + toggles */
        .navbar-center {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .social-nav {
            display: flex;
            gap: 6px;
        }

        .social-nav a {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            color: #fff;
        }

        .social-nav .yt {
            background: #FF0000;
        }

        .social-nav .fb {
            background: #1877F2;
        }

        /* Dark Mode Toggle */
        .dark-toggle {
            position: relative;
            display: inline-flex;
            align-items: center;
            padding: 4px;
            border-radius: 9999px;
            background: var(--tomato-500);
            cursor: pointer;
            border: none;
            width: 68px;
            height: 34px;
        }

        .dark-toggle .toggle-dot {
            position: absolute;
            top: 3px;
            left: 3px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        [data-theme="dark"] .dark-toggle .toggle-dot {
            transform: translateX(34px);
        }

        [dir="ltr"] [data-theme="dark"] .dark-toggle .toggle-dot {
            transform: translateX(34px);
        }

        [dir="rtl"] [data-theme="dark"] .dark-toggle .toggle-dot {
            transform: translateX(-34px);
        }

        .dark-toggle .icon-sun,
        .dark-toggle .icon-moon {
            position: absolute;
            font-size: 14px;
        }

        .dark-toggle .icon-sun {
            right: 10px;
            color: rgba(255, 255, 255, 0.5);
        }

        .dark-toggle .icon-moon {
            left: 10px;
            color: rgba(255, 255, 255, 0.5);
        }

        .dark-toggle .toggle-dot .dot-icon {
            color: var(--tomato-500);
            font-size: 14px;
        }

        /* Language Toggle */
        .lang-toggle {
            padding: 6px 14px;
            border-radius: 9999px;
            background: #bcbcd6;
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            font-family: 'Cairo', sans-serif;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: all 0.3s;
        }

        .lang-toggle:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Left side: Actions */
        .navbar-actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .navbar-actions .btn-register {
            padding: 8px 28px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 700;
            background: var(--tomato-500);
            color: #fff;
            border: 2px solid var(--tomato-500);
            cursor: pointer;
            font-family: 'Cairo', sans-serif;
            transition: all 0.3s;
        }

        .navbar-actions .btn-register:hover {
            background: transparent;
            color: var(--tomato-500);
        }

        .navbar-actions .btn-login-nav {
            padding: 8px 28px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 700;
            background: transparent;
            color: var(--tomato-500);
            border: 2px solid var(--tomato-500);
            cursor: pointer;
            font-family: 'Cairo', sans-serif;
            transition: all 0.3s;
        }

        .navbar-actions .btn-login-nav:hover {
            background: var(--tomato-500);
            color: #fff;
        }

        /* Mobile Menu */
        .menu-toggle-btn {
            display: none;
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-size: 24px;
            cursor: pointer;
            margin: 0 8px;
        }

        [data-theme="dark"] .menu-toggle-btn {
            color: #fff;
        }

        .mobile-menu {
            position: fixed;
            top: var(--navbar-height);
            left: 16px;
            right: 16px;
            background: var(--primary-container);
            border-radius: 16px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
            z-index: 39;
            transform: translateY(-20px);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-menu a {
            text-align: center;
            width: 100%;
            padding: 12px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 700;
        }

        .mobile-menu .btn-register {
            background: var(--tomato-500);
            color: #fff;
            border: 2px solid var(--tomato-500);
        }

        .mobile-menu .btn-login-nav {
            background: transparent;
            color: var(--tomato-500);
            border: 2px solid var(--tomato-500);
        }

        /* ===== HERO ===== */
        .hero-section {
            margin-top: calc(var(--navbar-height) + 32px);
            min-height: calc(100vh - var(--navbar-height) - 32px);
            width: 100%;
            display: flex;
            align-items: center;
            position: relative;
            background: var(--tomato-500);
        }

        .hero-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 0 80px;
        }

        .hero-text {
            flex: 1;
            color: #fff;
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding: 0 32px;
        }

        /* Direction-based alignment */
        [dir="rtl"] .hero-text {
            text-align: right;
        }

        [dir="ltr"] .hero-text {
            text-align: left;
        }

        .hero-text .small-tag {
            display: inline-block;
            font-size: 14px;
            font-weight: 700;
        }

        .hero-text .small-tag span {
            font-weight: 400;
            font-size: 13px;
        }

        .hero-text h1 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 900;
            line-height: 1.15;
        }

        .hero-text .hero-sub {
            max-width: 400px;
            font-size: 14px;
            line-height: 1.6;
        }

        .btn-hero {
            display: inline-block;
            width: 300px;
            padding: 16px 0;
            background: #fff;
            color: var(--tomato-500);
            border: 2px solid #fff;
            border-radius: 12px;
            font-weight: 800;
            font-size: 16px;
            cursor: pointer;
            font-family: 'Cairo', sans-serif;
            text-align: center;
        }

        .btn-hero:hover {
            background: var(--tomato-500);
            color: #fff;
            border-color: #fff;
        }

        .hero-stats {
            display: flex;
            justify-content: space-between;
            gap: 48px;
            padding-top: 20px;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat h3 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 900;
            font-variant-numeric: tabular-nums;
        }

        .hero-stat span {
            font-size: 14px;
            opacity: .9;
            margin-top: 8px;
            display: block;
        }

        .hero-image-wrap {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 80px;
        }

        .hero-image-wrap img {
            max-width: 100%;
            height: auto;
            position: relative;
            z-index: 10;
        }

        /* ===== WHY JOIN ===== */
        .why-section {
            padding: 64px 24px 48px;
        }

        .why-section h2 {
            text-align: center;
            font-size: clamp(1.8rem, 3.5vw, 3rem);
            font-weight: 800;
            margin-bottom: 48px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            position: relative;
            border-radius: 12px;
            min-height: 220px;
            overflow: hidden;
            background: var(--tomato-500);
        }

        .feature-card-bottom {
            position: absolute;
            bottom: 2px;
            left: 0;
            right: 0;
            height: 12px;
            border-radius: 0 0 12px 12px;
            background: var(--sakrGreen-400);
            transform: translateY(2px);
        }

        .feature-card-inner {
            position: relative;
            height: 100%;
            border-radius: 16px;
            overflow: hidden;
            color: #fff;
            padding: 24px;
        }

        .feature-card-inner .seed-icon {
            position: absolute;
            top: 28px;
            left: 28px;
            opacity: 1;
            width: 20px;
            height: auto;
        }

        .feature-number {
            position: absolute;
            top: 20px;
            right: 24px;
            font-weight: 900;
            font-size: clamp(2rem, 3.5vw, 3rem);
            line-height: 1;
        }

        .feature-title {
            position: absolute;
            bottom: 40px;
            right: 24px;
            width: 50%;
            font-weight: 800;
            font-size: clamp(1rem, 1.8vw, 1.4rem);
            line-height: 1.4;
            text-align: right;
        }

        /* ===== COURSES ===== */
        .courses-section {
            padding: 40px 0 40px;
        }

        .courses-header {
            padding: 32px 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .courses-header h2 {
            font-size: 1.5rem;
            font-weight: 800;
        }

        .btn-all {
            padding: 12px 48px;
            border-radius: 8px;
            border: 2px solid #000;
            background: #000;
            color: #fff;
            font-weight: 800;
            cursor: pointer;
            font-family: 'Cairo', sans-serif;
            font-size: 14px;
        }

        .btn-all:hover {
            background: transparent;
            color: #000;
        }

        .courses-slider-wrap {
            position: relative;
            padding: 0 20px;
        }

        .courses-slider {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 40px 20px;
            scrollbar-width: none;
        }

        .courses-slider::-webkit-scrollbar {
            display: none;
        }

        .course-card {
            min-width: 360px;
            max-width: 360px;
            background: var(--third-container);
            border: 2px solid var(--third-container);
            border-radius: 12px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            flex-shrink: 0;
        }

        .course-card-img {
            border-radius: 12px;
            overflow: hidden;
        }

        .course-card-img img {
            width: 100%;
            height: auto;
            max-height: 300px;
            object-fit: cover;
        }

        .course-card-body {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .course-card-body .course-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--tomato-500);
        }

        .course-card-body .course-price {
            color: var(--tomato-500);
            font-size: 14px;
        }

        .course-card-body .course-desc {
            color: var(--text-secondary);
            font-size: 12px;
        }

        .course-card-body .course-date {
            color: var(--text-secondary);
            font-size: 11px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .course-card-btns {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-top: auto;
            padding-top: 16px;
        }

        .btn-course {
            width: 100%;
            padding: 8px 0;
            border-radius: 12px;
            font-family: 'Cairo', sans-serif;
            font-weight: 700;
            font-size: 13px;
            cursor: pointer;
            border: 2px solid var(--tomato-500);
            text-align: center;
        }

        .btn-course-outline {
            background: transparent;
            color: var(--tomato-500);
        }

        .btn-course-outline:hover {
            background: var(--tomato-500);
            color: #fff;
        }

        .btn-course-filled {
            background: var(--tomato-500);
            color: #fff;
        }

        .btn-course-filled:hover {
            background: transparent;
            color: var(--tomato-500);
        }

        .slider-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            font-size: 18px;
            color: #333;
        }

        .slider-nav-btn:hover {
            background: var(--tomato-500);
            color: #fff;
            border-color: var(--tomato-500);
        }

        .slider-prev {
            left: 0;
        }

        .slider-next {
            right: 0;
        }

        /* ===== GALLERY SECTION ===== */
        .gallery-section {
            padding: 40px 8px 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            justify-items: center;
        }

        .gallery-card {
            width: 100%;
            max-width: 400px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .gallery-card-img {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            width: 100%;
            aspect-ratio: 1/1;
        }

        .gallery-card-img .bg-pattern {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            mix-blend-mode: luminosity;
            transform: scale(1.15);
        }

        .gallery-card-img .teacher-img {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            object-fit: cover;
            z-index: 2;
        }

        .gallery-card-img.bg-red {
            background: var(--tomato-500);
        }

        .gallery-card-img.bg-green {
            background: var(--sakrGreen-500);
        }

        .gallery-card-img.bg-dark {
            background: var(--primary-container);
        }

        .gallery-card-info {
            padding: 16px;
            border-radius: 12px;
            background: var(--third-container);
        }

        .gallery-card-info .gc-title {
            font-weight: 800;
            font-size: 14px;
        }

        .gallery-card-info p {
            font-size: 12px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ===== PREMIUM ABOUT SECTION ===== */
        .premium-about {
            padding: 100px 24px;
            background: linear-gradient(135deg, color-mix(in srgb, var(--main-color) 3%, transparent) 0%, transparent 100%);
            position: relative;
            overflow: hidden;
        }

        [data-theme="dark"] .premium-about {
            background: linear-gradient(135deg, color-mix(in srgb, var(--main-color) 8%, transparent) 0%, transparent 100%);
        }

        .about-wrapper {
            display: flex;
            gap: 64px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .about-text {
            flex: 1;
            position: relative;
            z-index: 2;
        }

        .about-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 9999px;
            background: color-mix(in srgb, var(--main-color) 10%, transparent);
            color: var(--main-color);
            font-weight: 800;
            font-size: 14px;
            margin-bottom: 16px;
        }

        .about-text h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .about-desc {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 32px;
        }

        .premium-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .premium-feat-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            border-radius: 16px;
            background: var(--bg-card);
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
        }

        .premium-feat-item:hover {
            transform: translateX(-10px);
            box-shadow: 0 10px 40px color-mix(in srgb, var(--main-color) 10%, transparent);
            border-color: color-mix(in srgb, var(--main-color) 20%, transparent);
        }

        [dir="ltr"] .premium-feat-item:hover {
            transform: translateX(10px);
        }

        [data-theme="dark"] .premium-feat-item {
            border-color: rgba(255, 255, 255, 0.05);
        }

        .premium-feat-item .icon-box {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--main-color), var(--tomato-600));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
            box-shadow: 0 8px 16px color-mix(in srgb, var(--main-color) 25%, transparent);
        }

        .feat-info h4 {
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 4px;
            color: var(--text-primary);
        }

        .feat-info p {
            font-size: 13px;
            color: var(--text-secondary);
            margin: 0;
        }

        .premium-image-wrap {
            flex: 1;
            position: relative;
        }

        .about-img-container {
            position: relative;
            width: 100%;
            aspect-ratio: 4/5;
            border-radius: 32px;
            z-index: 2;
        }

        .about-img-container .blob-shape {
            position: absolute;
            inset: -30px;
            background: linear-gradient(135deg, var(--sakrGreen-400), var(--tomato-500));
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            z-index: -1;
            opacity: 0.2;
            animation: blob-anim 8s ease-in-out infinite alternate;
        }

        @keyframes blob-anim {
            0% {
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            }

            100% {
                border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
            }
        }

        .about-img-container .main-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 32px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .exp-badge {
            position: absolute;
            bottom: 32px;
            right: -32px;
            background: #fff;
            padding: 20px 32px;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 16px;
            z-index: 10;
        }

        [dir="ltr"] .exp-badge {
            right: auto;
            left: -32px;
        }

        [data-theme="dark"] .exp-badge {
            background: var(--primary-container);
        }

        .exp-badge .exp-num {
            font-size: 40px;
            font-weight: 900;
            color: var(--tomato-500);
            line-height: 1;
        }

        .exp-badge .exp-text {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-secondary);
            line-height: 1.4;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--primary-container);
            padding: 40px 24px 16px;
            color: #fff;
            margin-top: 60px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .footer-logo img {
            height: 50px;
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }

        .footer-links a {
            color: #aaa;
            font-size: 13px;
        }

        .footer-links a:hover {
            color: var(--tomato-500);
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
        }

        .footer-social a:hover {
            background: var(--tomato-500);
        }

        .footer-copy {
            text-align: center;
            font-size: 12px;
            color: #666;
        }

        /* ===== RESPONSIVE ===== */
        @media(max-width:1024px) {
            .navbar {
                margin: 8px 16px;
            }

            .hero-inner {
                flex-direction: column;
                padding: 40px 20px;
                text-align: center;
            }

            .hero-text {
                align-items: center;
                text-align: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-image-wrap {
                padding: 20px;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .about-wrapper {
                flex-direction: column;
                gap: 40px;
            }

            .exp-badge {
                right: 16px;
                bottom: 16px;
            }

            [dir="ltr"] .exp-badge {
                left: 16px;
                right: auto;
            }

            .courses-header {
                padding: 20px;
            }

            .navbar-actions {
                display: flex;
            }

            .navbar-actions .btn-register,
            .navbar-actions .btn-login-nav {
                display: none;
            }

            .menu-toggle-btn {
                display: block;
            }
        }

        @media(max-width:640px) {
            .navbar {
                margin: 8px;
            }

            .navbar-center .social-nav {
                display: none;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .feature-card {
                min-height: 180px;
            }

            .feature-number {
                font-size: 2rem;
            }

            .feature-title {
                font-size: 0.9rem;
            }

            .course-card {
                min-width: 280px;
                max-width: 280px;
            }

            .course-card {
                min-width: 280px;
                max-width: 280px;
            }
        }