* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #CCCCCC;
    background-color: #3D3D3D;
    overflow-x: hidden;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #3D3D3D 0%, #2a2a2a 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar > div.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar-ctas {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.logo-icon {
    width: fit-content;
    padding-inline: 0.2rem;
    height: 40px;
    background: linear-gradient(45deg, #FF9933, #ff8c1a);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #3D3D3D;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF9933;
}

.nav-links {
    display: flex;
    gap: 0.6rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #CCCCCC;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    transition: all 0.3s ease-out;
    position: relative;
    padding: 0.5rem 0.6rem;
    border-radius: 6px;
}

.nav-links a:hover {
    color: #FF9933;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #fab066;
    border-radius: 1px;
    transition: width 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.nav-links a.active {
    background-color: rgba(255, 153, 51, 0.1);
    color: #FF9933;
    font-weight: 600;
}

.nav-links a.active::after {
    width: 20px;
    opacity: 1;
}

.nav-links a:hover {
    color: #FF9933;
}

.nav-cta {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
    color: #2a2a2a;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #CCCCCC;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 1001;
    margin-left: auto;
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 153, 51, 0.1);
    color: #FF9933;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #3D3D3D 0%, #2a2a2a 100%);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FF9933;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #CCCCCC;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    text-align: left;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #FF9933, #ff8c1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .hero-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #CCCCCC;
    font-size: 0.9rem;
}

.hero-feature-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #FF9933, #ff8c1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #3D3D3D;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Code Editor Styles */
.code-editor {
    background: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    z-index: 1;
    text-align: left;
    font-family: 'Fira Code', 'Courier New', monospace;
    transition: transform 0.3s ease;
}

.code-editor:hover {
    transform: translateY(-5px);
}

.code-editor-mobile {
    display: none;
}

.editor-header {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #333;
}

.window-controls {
    display: flex;
    gap: 6px;
}

.window-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
}

.window-control.close {
    background: #ff5f56;
}

.window-control.minimize {
    background: #ffbd2e;
}

.window-control.maximize {
    background: #27ca3f;
}

.editor-title {
    color: #999;
    font-size: 0.9rem;
    margin-left: 20px;
    font-weight: 500;
}

.editor-content {
    padding: 15px;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e0e0e0;
    overflow-x: auto;
    height: 100%;
    background-color: #1e1e1e;
    border-radius: 0 0 8px 8px;
    counter-reset: line;
}

.code-line {
    display: flex;
    min-height: 1.5em;
    white-space: pre;
    position: relative;
    padding-left: 3.5em; /* Space for line number */
    text-indent: -2.5em; /* Pull back the text to align with line numbers */
    line-height: 1.5;
    align-items: center;
}

.code-text {
    flex: 1;
    white-space: pre;
    tab-size: 2;
    -moz-tab-size: 2;
    padding-left: 1em;
    display: inline-block;
}

.line-number {
    display: inline-block;
    width: 2.5em;
    text-align: right;
    padding-right: 1.5em;
    margin-right: 0.5em;
    user-select: none;
    opacity: 0.7;
    position: relative;
    color: #6e7681;
}

.code-text {
    flex: 1;
}

.keyword {
    color: #569cd6;
}

.string {
    color: #ce9178;
}

.comment {
    color: #6a9955;
}

.function {
    color: #dcdcaa;
}

.number {
    color: #b5cea8;
}

.operator {
    color: #d4d4d4;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: #FF9933;
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #FF9933, #ff8c1a);
    color: #3D3D3D;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #CCCCCC;
    border: 2px solid #CCCCCC;
}

.btn-secondary:hover {
    background: #CCCCCC;
    color: #3D3D3D;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #2a2a2a;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF9933;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #3D3D3D;
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid #444;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #FF9933;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FF9933, #ff8c1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #3D3D3D;
    position: absolute;
    top: -15px;
    left: 20px;
}

.feature-content {
    margin-top: 1rem;
}

/* Curriculum Section */
.curriculum {
    padding: 80px 0;
    background: #3D3D3D;
}

.curriculum-container {
    margin-top: 3rem;
}

.curriculum-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.curriculum-tab {
    background: #2a2a2a;
    border: 2px solid #444;
    color: #CCCCCC;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.curriculum-tab.active {
    background: linear-gradient(45deg, #FF9933, #ff8c1a);
    color: #3D3D3D;
    border-color: #FF9933;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.3);
}

.curriculum-tab:hover:not(.active) {
    border-color: #FF9933;
    color: #FF9933;
}

.curriculum-content {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 3rem 2rem 2rem 2rem;
    border: 1px solid #444;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.curriculum-module {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.curriculum-module.active {
    display: block;
}

.module-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.module-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FF9933, #ff8c1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #3D3D3D;
    font-size: 1.2rem;
}

.module-title {
    color: #FF9933;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.module-description {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.module-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.topic-item {
    background: #3D3D3D;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #FF9933;
}

.topic-item h5 {
    color: #FF9933;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.topic-item p {
    color: #CCCCCC;
    font-size: 0.9rem;
    margin: 0;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #2a2a2a;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: #3D3D3D;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #4D4D4D;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: #FF9933;
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    color: #3D3D3D;
    background: linear-gradient(45deg, #FF9933, #ff8c1a);
    border: 3px solid linear-gradient(45deg, #FF9933, #ff8c1a);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-name {
    color: #FF9933;
    font-size: 1.3rem;
    font-weight: 600;
}

.member-role {
    color: #999;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.member-bio {
    color: #CCCCCC;
    margin: 1rem 0;
    line-height: 1.6;
    max-height: none;
    opacity: 1;
    overflow: visible;
    transition: all 0.3s ease;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.expertise-tag {
    background: rgba(255, 153, 51, 0.1);
    color: #FF9933;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 153, 51, 0.3);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #3D3D3D;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    border: 1px solid #3D3D3D;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: #FF9933;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.testimonial-text {
    margin-block: 1rem;
    font-style: italic;
}

.testimonial-author {
    color: #FF9933;
    font-weight: 600;
}

/* Contact */
.contact {
    padding: 80px 0;
    background: #2a2a2a;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #3D3D3D;
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #CCCCCC;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 6px;
    background: #2a2a2a;
    color: #CCCCCC;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF9933;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 4rem 0 2rem 0;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo h3 {
    color: #FF9933;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-logo p {
    color: #CCCCCC;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-newsletter h4 {
    color: #FF9933;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-newsletter p {
    color: #CCCCCC;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 10px 15px;
    border: 1px solid #444;
    border-radius: 6px;
    background: #2a2a2a;
    color: #CCCCCC;
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #FF9933;
}

.newsletter-form .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #FF9933;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #FF9933;
}

.footer-contact {
    margin-top: 10px;
}

.footer-contact h4 {
    color: #FF9933;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-contact p {
    margin: 0.5rem 0;
    color: #CCCCCC;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
}

.footer-bottom-content p {
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #FF9933;
}

/* Media Queries */
@media (min-width: 769px) {
    .nav-cta {
        display: inline-block;
        background: linear-gradient(45deg, #FF9933, #ff8c1a);
        color: #2a2a2a;
        text-decoration: none;
        padding: 0.6rem 1.2rem;
        border-radius: 25px;
        font-weight: 600;
        transition: all 0.3s ease;
        white-space: nowrap;
        margin-left: 1.5rem;
    }
    .feature-card {
        text-align: center;
    }
    .feature-icon {
        position: static;
        width: 90px;
        height: 90px;
        font-size: 28px;
        margin: 0 auto 1.5rem;
    }
    .feature-content {
        margin-top: 0;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #2a2a2a;
        flex-direction: column;
        padding: 70px 1.25rem 1.25rem;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        text-align: center;
    }
    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }
    .nav-links li {
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid #3D3D3D;
    }
    .nav-links a {
        font-size: 0.95rem;
        display: block;
        padding: 0.5rem 0;
        color: #e0e0e0;
        transition: color 0.2s ease;
    }
    .nav-links a:hover {
        color: #FF9933;
    }
    .nav-links li:last-child {
        border-bottom: none;
    }
    .nav-cta {
        display: none !important;
    }
    .mobile-menu-btn {
        display: block;
    }
    .logo {
        z-index: 1001;
    }
}

@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }
    
    nav {
        position: relative;
    }

    nav.container {
        position: relative;
    }

    .mobile-menu-btn {
        display: block !important;
        z-index: 1001;
        position: relative;
    }

    .mobile-menu-btn.active {
        transform: rotate(90deg);
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #2a2a2a;
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        padding: 0;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.2rem;
        font-weight: 600;
        color: #7a7a7a;
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: 8px;
        margin: 0;
    }

    .nav-links a:hover {
        background: inherit;
        color: #3D3D3D;
        transform: scale(1.05);
    }

    .nav-links a.active {
        background-color: inherit;
    }

    .section-title {
        font-size: 1.9rem;
    }

    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
        order: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-text h1 {
        text-align: center;
        font-size: 1.9rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        width: 80%;
        word-wrap: break-word;
    }

    .hero-subtitle {
        text-align: center;
        font-size: 0.8rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

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

    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
        margin: 0.5rem 0;
    }

    /* Code Editor */
    .code-editor {
        display: none;
    }

    .code-editor-mobile {
        display: block;
        order: 1;
        width: 100%;
    }

    .code-editor-mobile:hover {
        transform: translateY(-3px);
    }

    .code-editor-mobile .editor-header {
        padding: 12px 20px;
    }
    
    .code-editor-mobile .window-controls {
        gap: 3px;
    }

    .code-editor-mobile .window-control {
        width: 8px;
        height: 8px;
    }

    .code-editor-mobile .editor-title {
        font-size: 0.9rem;
        margin-left: 6px;
    }

    .code-editor-mobile .editor-content {
        padding: 15px;
    }

    .code-editor-mobile .code-line {
        padding-left: 0; /* Space for line number */
        text-indent: -2.5em; /* Pull back the text to align with line numbers */
    }

    .code-editor-mobile .code-text {
        flex: 1;
        white-space: pre;
        tab-size: 2;
        -moz-tab-size: 2;
        padding-left: 0em;
    }

    .code-editor-mobile .line-number {
        width: 2.5em;
        padding-right: 1.5em;
        margin-right: 1.5em;
    }

    /* Features Section */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.2rem;
        border-radius: 8px;
        margin-block-end: 2.4rem;
    }

    .feature-icon {
        top: -30px;
        width: 60px;
        height: 60px;
        font-size: 16px;
        margin-bottom: 1.2rem;
    }

    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Curriculum Section */
    .features-grid,
    .curriculum-tabs {
        gap: 0.5rem;
    }

    .curriculum-tab {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .curriculum-content {
        padding: 1.5rem;
        min-height: 250px;
    }

    .module-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .module-topics {
        grid-template-columns: 1fr;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-member {
        padding: 1.25rem;
        cursor: pointer;
    }

    .member-bio {
        margin: 0;
        overflow: hidden;
        display: block !important;
    }

    .member-avatar {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }

    .member-expertise {
        margin-block-start: 1rem;
    }

    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contact-form .form-group {
        inline-size: 100%;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
        max-width: 300px;
        padding-block: 0.85rem;
    }

    .newsletter-form input {
        min-width: auto;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .footer-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    

    .footer-bottom-links {
        justify-content: center;
    }
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
