@import url('https://fonts.cdnfonts.com/css/lufga');

:root {
    --primary-green: #72a8f9b0;
    --primary-hover: #a8cbff;
    --secondary-blue: #4992ff79;
    --secondary-hover: #a8cbff;
    --bg-page: #EAEAEA;
    --bg-card: #dbe8fd;
    --text-main: #1A1A1A;
    --text-muted: #6B6B6B;
    --border-main: #E8E8E8;
    --danger: #E98F8F;
    --success-bg: #E8F7EB;

    --radius-button: 12px;
    --radius-card: 24px;
    --radius-modal: 20px;
    --radius-input: 8px;

    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);

    --font-sans: 'Lufga', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    /* No bold fonts as requested */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Transparent Navbar by default */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

/* Glassmorphism Navbar on scroll */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-main);
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-auth {
    display: flex;
    gap: 16px;
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: var(--radius-button);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-main);
    color: var(--text-main);
}

.btn-outline:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    text-align: left;
    background: url('../assets/images/hero.jpeg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 0;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-content h2 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 400;
    color: white;
}

.hero-content p {
    font-size: 18px;
    color: white;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Services / Courses */
.section {
    padding: 100px 5%;
}

.section-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 48px;
    text-align: center;
}

/* About Us Section New Styles */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image-wrapper {
    flex: 0 0 450px;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #f0f0f0;
}

.about-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
}

.about-lead {
    font-size: 18px;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrapper i {
    color: var(--secondary-blue);
    width: 24px;
    height: 24px;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--text-main);
}

.feature-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 968px) {
    .about-container {
        flex-direction: column;
        gap: 48px;
    }
    
    .about-image-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }

    .about-content .section-title {
        text-align: center !important;
    }

    .about-lead {
        text-align: center;
    }
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.course-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.course-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 500;
}

.course-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

/* Restructured Course Layout Styles */
.courses-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px; /* Reduced slightly to ensure it fits well on smaller desktops */
    margin-bottom: 64px;
}

@media (max-width: 1200px) {
    .courses-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .courses-featured-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.courses-scroll-section {
    position: relative;
    margin-top: 40px;
}

.courses-scroll-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.courses-scroll-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 10px 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox hide scrollbar */
    -ms-overflow-style: none; /* IE hide scrollbar */
}

.courses-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome hide scrollbar */
}

.courses-scroll-container .course-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    min-width: 320px;
}

@media (max-width: 768px) {
    .courses-scroll-container .course-card {
        flex: 0 0 85%;
    }
}

.contact-card {
    background: #fffac0;
    /* Premium Yellowish Background */
    border: 1px solid #F3E5AB;
    border-radius: var(--radius-card);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.location-card {
    cursor: pointer;
    text-decoration: none;
}

.location-card:hover {
    background-color: #fff68f; /* Slightly deeper yellow on hover to indicate clickability */
}

.contact-card i {
    color: #DAA520;
    /* Golden touch for icons */
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--bg-card);
    width: 100%;
    max-width: 440px;
    padding: 40px;
    border-radius: var(--radius-modal);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.close-modal {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border-radius: 24px;
    /* Matches React app pill style */
    border: 1px solid var(--border-main);
    background: white;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.form-control:focus {
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 2px rgba(132, 216, 222, 0.2);
}

/* Footer */
footer {
    padding: 80px 5%;
    background: #fff;
    border-top: 1px solid var(--border-main);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 64px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-main);
    font-size: 13px;
    color: var(--text-muted);
}

/* Auth Message */
.auth-message {
    font-size: 14px;
    text-align: center;
    margin-top: 24px;
}

.auth-message a {
    color: var(--secondary-blue);
    font-weight: 500;
}

/* Legal Content Styles */
.legal-container {
    max-width: 800px;
    margin: 120px auto;
    padding: 0 24px;
}

.legal-container h1 {
    margin-bottom: 40px;
    font-weight: 500;
}

.legal-section {
    margin-bottom: 32px;
}

.legal-section h2 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 500;
}

.legal-section p,
.legal-section ul li {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.legal-section ul {
    margin-left: 20px;
    list-style: disc;
}

/* Results & Wall of Fame Section */
.results-section {
    padding: 100px 5%;
    background-color: #fff;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.stat-item {
    background: #dcffdb; /* Soft Reddish Background */
    padding: 32px;
    border-radius: var(--radius-card);
    text-align: center;
    border: 1px solid rgba(233, 143, 143, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 36px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.results-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.results-tabs {
    display: flex;
    gap: 12px;
    background: #f0f0f0;
    padding: 6px;
    border-radius: 40px;
}

.tab-btn {
    padding: 12px 24px;
    border-radius: 30px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn.active {
    background: white;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
}

.results-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
}

.student-card {
    background: #eaeaea;
    border: 2px solid var(--border-main);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    display: none;
    flex: 0 1 280px; /* Consistent card width */
    min-width: 240px;
    margin-bottom: 32px;
}

.student-card.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Course Detail Page Styles */
.course-page-hero {
    padding: 160px 5% 80px;
    background: #f8fbff;
    text-align: center;
}

.course-page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.course-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-card);
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--secondary-blue);
    text-transform: uppercase;
}

.course-main-content {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
}

.course-description h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.course-description p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.curriculum-grid {
    display: grid;
    gap: 24px;
}

.curriculum-item {
    background: #fff;
    border: 1px solid var(--border-main);
    padding: 24px;
    border-radius: var(--radius-card);
}

.curriculum-item h4 {
    margin-bottom: 8px;
    font-weight: 500;
}

.enroll-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.enroll-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
}

.enroll-card h3 {
    margin-bottom: 16px;
}

.enroll-features {
    margin: 24px 0;
}

.enroll-features li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.enroll-features i {
    color: var(--primary-green);
}

@media (max-width: 968px) {
    .course-main-content {
        grid-template-columns: 1fr;
    }
    
    .enroll-sidebar {
        position: static;
    }
}

.student-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.student-img-container {
    width: 100%;
    overflow: hidden;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px; /* Ensure some structure even if image loads slowly */
}

.student-img-container img {
    width: 100%;
    height: auto;
    object-fit: contain; 
    display: block;
    background: white; /* Contrast for contained images */
}

.student-info {
    padding: 24px;
    text-align: center;
}

.student-name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--text-main);
}

.student-rank {
    font-size: 13px;
    color: #000000; /* Set to Black as requested */
    font-weight: 500;
    letter-spacing: 0.5px;
}

.topper-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-green);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

/* Director's Message Styles */
.director-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 64px;
    background: white;
    padding: 60px;
    border-radius: var(--radius-card);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-main);
}

.director-image-wrapper {
    flex: 0 0 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #f0f0f0;
}

.director-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.director-container:hover .director-image {
    transform: scale(1.05);
}

.director-content-wrapper {
    flex: 1;
}

.director-quote {
    font-size: 20px;
    color: var(--text-main);
    line-height: 1.8;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 32px;
    position: relative;
}

.director-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 60px;
    color: var(--secondary-blue);
    opacity: 0.2;
    font-family: serif;
}

.director-signature {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.director-signature strong {
    font-size: 20px;
    color: var(--text-main);
    font-weight: 500;
}

.director-credentials {
    font-size: 15px;
    color: var(--secondary-blue);
    font-weight: 500;
}

.director-title {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

@media (max-width: 968px) {
    .director-container {
        flex-direction: column;
        padding: 40px 24px;
        gap: 40px;
    }

    .director-image-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
    }

    .director-content-wrapper {
        text-align: center;
    }

    .director-content-wrapper .section-title {
        text-align: center !important;
    }

    .director-quote {
        font-size: 18px;
    }
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    /* 1. Navbar Mobile & Sidebar */
    .navbar {
        height: 70px;
        padding: 0 5%;
        display: flex;
        flex-direction: row-reverse; /* Flip items so logo is right, toggle is left */
        justify-content: space-between;
        align-items: center;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
        padding: 10px;
    }

    .nav-toggle .bar {
        width: 25px;
        height: 2px;
        background: var(--text-main);
        transition: all 0.3s ease;
    }

    /* Hamburger Animation to X */
    .navbar.mobile-open .nav-toggle .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background: var(--text-main);
    }
    .navbar.mobile-open .nav-toggle .bar:nth-child(2) {
        opacity: 0;
    }
    .navbar.mobile-open .nav-toggle .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background: var(--text-main);
    }

    .nav-links {
        position: fixed;
        left: -300px; /* Sidebar off-screen on the left */
        top: 0;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 40px;
        gap: 32px;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1); /* Shadow on the right side */
    }

    .navbar.mobile-open .nav-links {
        left: 0; /* Sidebar slides in */
    }

    .nav-links a {
        font-size: 18px;
        width: 100%;
        display: block;
    }

    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(4px);
        z-index: 998;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .sidebar-overlay.active {
        visibility: visible;
        opacity: 1;
    }

    .nav-auth {
        display: none;
    }

    /* 2. Hero Section Refinement */
    .hero {
        padding: 0 6%;
        justify-content: center;
        text-align: center;
        background-position: 88% center; /* Shift further to center the girl on mobile */
    }

    .hero-content {
        max-width: 100%;
        padding-top: 40px; /* Slight adjustment */
    }

    .hero-content h1 {
        font-size: 34px !important;
        line-height: 1.2;
        margin-bottom: 20px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Darker shadow for white text */
        color: #ffffff !important; /* Changed to white */
    }

    .hero-content h2 {
        font-size: 18px !important;
        color: #1a1a1a;
        background: rgba(255, 255, 255, 0.85); /* Stronger background for legibility */
        padding: 6px 12px;
        display: inline-block;
        border-radius: 8px;
        margin-bottom: 12px;
        box-shadow: var(--shadow-sm);
    }

    .hero-content p {
        font-size: 15px !important;
        margin-bottom: 32px;
        color: #333;
        background: rgba(255, 255, 255, 0.7);
        padding: 8px 16px;
        border-radius: 8px;
        box-shadow: var(--shadow-sm);
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .hero-btns .btn {
        margin-left: 0 !important;
        padding: 12px 24px !important;
        font-size: 15px !important;
    }

    .hero-btns .btn-outline {
        color: #ffffff !important;
        border-color: #ffffff !important;
    }

    /* 3. Sections & Titles */
    .section {
        padding: 60px 6%;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    /* 4. Courses Grid */
    .courses-featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .course-card {
        padding: 24px;
    }

    /* 5. Results Section */
    .results-section {
        padding: 60px 6%;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 26px;
    }

    .results-tabs-wrapper {
        margin-bottom: 32px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 20px 10px; /* Added side padding to prevent edge clipping */
        scrollbar-width: none;
        display: flex;
        justify-content: flex-start; /* Changed from center to prevent clipping when overflowing */
    }
    
    .results-tabs-wrapper::-webkit-scrollbar {
        display: none;
    }

    .results-tabs {
        display: flex;
        flex-wrap: nowrap;
        gap: 12px; /* Increased gap */
        padding: 4px 0;
        width: max-content;
    }

    .tab-btn {
        padding: 10px 18px;
        font-size: 13px;
        flex-shrink: 0; /* Prevent buttons from shrinking */
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* 6. Director's Message (already has 968px, refining for mobile) */
    .director-container {
        padding: 30px 20px;
    }

    .director-quote {
        font-size: 16px;
        line-height: 1.6;
    }

    .director-signature strong {
        font-size: 18px;
    }

    /* 7. Contact Cards */
    #contact div[style*='display: flex'] {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .contact-card {
        min-width: 100% !important;
    }

    /* 8. Footer */
    footer {
        padding: 60px 6%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* 9. Modals */
    .modal-content {
        width: 92%;
        padding: 30px 20px;
    }

    /* 10. Course Detail Pages */
    .course-page-hero {
        padding: 120px 6% 40px;
    }

    .course-page-hero h1 {
        font-size: 28px;
    }

    .course-main-content {
        padding: 40px 6%;
        gap: 40px;
    }
}