/* CSS Variables based on Mockup */
:root {
    --primary-blue: #1b3d88;
    --accent-yellow: #f8b422;
    --accent-yellow-hover: #e09f18;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    --font-main: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-light);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 4px; /* Mockup has slightly rounded buttons */
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--accent-yellow);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--accent-yellow-hover);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--bg-white);
}

/* Animated Enquiry Button */
.btn-enquiry {
    background: linear-gradient(135deg, var(--accent-yellow), #e09f18);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-enquiry::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 3s infinite;
}

.btn-enquiry:hover {
    background: linear-gradient(135deg, #e09f18, var(--accent-yellow));
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(248, 180, 34, 0.5);
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(27, 61, 136, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(27, 61, 136, 0);
    }
}

/* Subtitle Styling (WELCOME TO, ABOUT US, OUR COURSES) */
.subtitle {
    color: var(--accent-yellow);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.subtitle-line {
    height: 2px;
    width: 40px;
    background-color: var(--accent-yellow);
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0);
    padding: 15px 0;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    font-weight: 800;
    font-size: 1.2rem;
}

.logo-text span {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-blue);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-yellow);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.call-us {
    display: flex;
    align-items: center;
    gap: 10px;
}

.call-us i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.call-us div {
    display: flex;
    flex-direction: column;
}

.call-title {
    font-size: 0.7rem;
    color: var(--text-light);
}

.call-number {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Hero Banner Section - Full Width */
.hero-banner {
    position: relative;
    width: calc(100vw - 40px);
    height: 90vh;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    margin: 0px auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%; 
        background-color: rgba(255, 255, 255, 0);
        color: white; 
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background-color: var(--accent-yellow);
    color: var(--bg-white);
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(248, 180, 34, 0.4);
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.carousel-dot.active {
    background-color: var(--accent-yellow);
    width: 28px;
    border-radius: 6px;
    border-color: var(--accent-yellow);
}

/* Stats Bar */
.stats-bar {
    background-color: var(--bg-white);
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
    margin-top: -50px; /* Overlap hero slightly */
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 30px 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.stat-info h3 {
    font-size: 1.8rem;
    color: var(--accent-yellow);
    line-height: 1;
}

.stat-info p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background-color: var(--border-color);
}

/* About Us Section */
.about-section {
    padding: 100px 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-images {
    flex: 1;
    position: relative;
    height: 500px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 80%;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    border-radius: 10px;
    overflow: hidden;
    border: 10px solid var(--bg-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 2;
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 25px;
}

.features-list {
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.features-list i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

/* Courses Section */
.courses-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-header {
    margin-bottom: 50px;
}

.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.course-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.course-img-wrapper {
    position: relative;
    height: 200px;
}

.course-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bg-white);
    font-size: 1.2rem;
}

.course-info {
    padding: 30px 20px 20px;
}

.course-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.students-count {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.view-details {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.view-details:hover {
    color: var(--accent-yellow);
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary-blue);
    padding: 60px 0;
    color: var(--bg-white);
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-icon {
    width: 80px;
    height: 80px;
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent-yellow);
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    color: var(--bg-white);
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: #0f2453; /* Darker blue */
    color: #a0aec0;
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.5fr;
    gap: 35px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-col {
    min-width: 200px;
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.about-col p {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background-color: rgba(255,255,255,0.1);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-yellow);
}

.links-col ul li {
    margin-bottom: 10px;
}

.links-col a {
    transition: var(--transition);
    font-size: 0.9rem;
}

.links-col a:hover {
    color: var(--accent-yellow);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-list i {
    color: var(--accent-yellow);
    margin-top: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.newsletter-form button {
    background-color: var(--accent-yellow);
    color: var(--bg-white);
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--accent-yellow-hover);
}

.footer-bottom {
    background-color: #0b1a3d;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.footer-legal a {
    margin-left: 0;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--bg-white);
}

/* Responsive - Tablet (1024px and below) */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    /* Header */
    .header {
        padding: 12px 0;
        background-color: antiquewhite;
    }

    .logo-text strong {
        font-size: 1rem;
    }

    .logo-text span {
        font-size: 0.5rem;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    /* Hero Banner */
    .hero-banner {
        height: 70vh;
        margin: 15px auto;
        width: calc(100vw - 30px);
    }

    .carousel-controls {
        padding: 0 20px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .carousel-dots {
        bottom: 30px;
    }

    /* Stats */
    .stats-bar {
        padding: 30px 0;
        margin-top: -30px;
    }

    .stats-container {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 30px;
    }

    .stat-item {
        gap: 10px;
        flex: 1;
        min-width: 45%;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .stat-info h3 {
        font-size: 1.5rem;
    }

    .stat-info p {
        font-size: 0.8rem;
    }

    .stat-divider {
        display: none;
    }

    /* About Section */
    .about-section {
        padding: 60px 0;
    }

    .about-container {
        gap: 40px;
    }

    .about-images {
        height: 400px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    /* Courses Section */
    .courses-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 40px 0;
    }

    .cta-text h2 {
        font-size: 1.6rem;
    }

    /* Footer */
    .footer {
        padding-top: 60px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-bottom .container {
        flex-wrap: wrap;
    }
}

/* Responsive - Mobile Landscape (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Header */
    .header {
        padding: 10px 0;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-text strong {
        font-size: 0.9rem;
    }

    .logo-text span {
        font-size: 0.45rem;
        letter-spacing: 0.5px;
    }

    .nav-links, .call-us {
        display: none !important;
    }

    .hamburger {
        display: block;
        font-size: 1.3rem;
    }

    .header-actions {
        gap: 10px;
    }

    /* Hero Banner */
    .hero-banner {
        width: 100%;
        height: 60vh;
        margin: 10px 0;
        border-radius: 10px;
    }

    .carousel-controls {
        padding: 0 15px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .carousel-dots {
        bottom: 20px;
        gap: 8px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .carousel-dot.active {
        width: 24px;
    }

    /* Stats Bar */
    .stats-bar {
        padding: 20px 0;
        margin-top: -20px;
    }

    .stats-container {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-radius: 8px;
    }

    .stat-item {
        gap: 12px;
        width: 100%;
    }

    .stat-icon {
        font-size: 1.8rem;
        min-width: 40px;
    }

    .stat-info h3 {
        font-size: 1.3rem;
    }

    .stat-info p {
        font-size: 0.75rem;
    }

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1rem;
    }

    p {
        font-size: 0.9rem;
    }

    /* Buttons */
    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        gap: 6px;
    }

    .btn-enquiry {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    /* About Section */
    .about-section {
        padding: 40px 0;
    }

    .about-container {
        flex-direction: column;
        gap: 30px;
    }

    .about-images {
        height: 300px;
        width: 100%;
    }

    .about-img-main {
        width: 100%;
        height: 70%;
    }

    .about-img-secondary {
        width: 45%;
        height: 45%;
        border: 8px solid var(--bg-white);
    }

    .about-content {
        order: -1;
    }

    .about-content h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .about-content p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .features-list li {
        gap: 8px;
        margin-bottom: 8px;
        font-size: 0.85rem;
    }

    .features-list i {
        font-size: 1rem;
        min-width: 15px;
    }

    /* Courses Section */
    .courses-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .course-card {
        border-radius: 8px;
    }

    .course-img-wrapper {
        height: 160px;
    }

    .course-badge {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        left: 15px;
        bottom: -18px;
    }

    .course-info {
        padding: 20px 15px 15px;
    }

    .course-info h3 {
        font-size: 1rem;
    }

    .students-count {
        font-size: 0.75rem;
    }

    .view-details {
        font-size: 0.8rem;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 30px 0;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .cta-text h2 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .cta-text p {
        font-size: 0.85rem;
    }

    /* Footer */
    .footer {
        padding-top: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }

    .footer-col h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .about-col p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .social-links {
        gap: 8px;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .links-col a {
        font-size: 0.85rem;
    }

    .contact-list li {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 4px 4px 0 0;
        padding: 10px 12px;
        margin-bottom: 8px;
    }

    .newsletter-form button {
        border-radius: 0 0 4px 4px;
        padding: 10px 15px;
    }

    .footer-bottom {
        padding: 15px 0;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 8px;
    }

    .footer-legal {
        text-align: center;
    }

    .footer-legal a {
        margin-left: 5px;
        font-size: 0.8rem;
    }
}

/* Responsive - Mobile Portrait (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    /* Header */
    .header {
        padding: 8px 0;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-text strong {
        font-size: 0.8rem;
    }

    .hamburger {
        font-size: 1.1rem;
    }

    /* Hero Banner */
    .hero-banner {
        height: 50vh;
        margin: 8px 0;
        border-radius: 8px;
        width: 100%;
    }

    .carousel-controls {
        padding: 0 10px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .carousel-dots {
        bottom: 15px;
        gap: 6px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
        border-width: 1px;
    }

    .carousel-dot.active {
        width: 20px;
        border-width: 1px;
    }

    /* Stats Bar */
    .stats-bar {
        padding: 15px 0;
        margin-top: -15px;
    }

    .stats-container {
        padding: 15px;
    }

    .stat-icon {
        font-size: 1.5rem;
    }

    .stat-info h3 {
        font-size: 1.1rem;
    }

    .stat-info p {
        font-size: 0.7rem;
    }

    /* Typography */
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem !important;
    }

    h3 {
        font-size: 0.95rem;
    }

    p {
        font-size: 0.8rem;
    }

    /* Buttons */
    .btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .btn-enquiry {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    /* About Section */
    .about-section {
        padding: 30px 0;
    }

    .about-images {
        height: 250px;
    }

    .about-content h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .about-content p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .features-list li {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }

    /* Courses Section */
    .courses-section {
        padding: 30px 0;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .course-img-wrapper {
        height: 140px;
    }

    .course-info {
        padding: 15px 12px 10px;
    }

    .course-info h3 {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }

    .students-count {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 20px 0;
    }

    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .cta-text h2 {
        font-size: 1.1rem;
    }

    .cta-text p {
        font-size: 0.8rem;
    }

    /* Footer */
    .footer {
        padding-top: 30px;
    }

    .footer-col h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .about-col p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .links-col a {
        font-size: 0.8rem;
    }

    .contact-list li {
        font-size: 0.8rem;
        margin-bottom: 10px;
        gap: 8px;
    }

    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }

    .newsletter-form input {
        font-size: 0.8rem;
        padding: 8px 10px;
    }

    .newsletter-form button {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .footer-bottom {
        padding: 12px 0;
    }

    .footer-legal a {
        font-size: 0.75rem;
    }
}