:root {
            --primary-navy: #0A2342;
            --primary-green: #00D66C;
            --accent-teal: #1B6B93;
            --text-dark: #1a1a1a;
            --text-light: #4a5568;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
            --border-color: #e2e8f0;
            --success-green: #047857;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Work Sans', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Crimson Pro', serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
           background: rgba(10, 35, 66, 0.98);

            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 2px solid var(--primary-green);
            transition: all 0.3s ease;
        }
        
        nav.scrolled {
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0.75rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-img {
            height: 60px;
            width: auto;
        }
        
        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--bg-white);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-green);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary-green);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .cta-button {
            background: var(--primary-green);
            color: var(--primary-navy);
            padding: 0.75rem 1.75rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-green);
        }
        
        .cta-button:hover {
            background: transparent;
            color: var(--primary-green);
            transform: translateY(-2px);
        }
        
        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
            background: none;
            border: none;
            padding: 5px;
        }
        
        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--bg-white);
            transition: all 0.3s ease;
            display: block;
        }
        
        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        
        /* Hero Section */
        .hero {
            margin-top: 92px;
            background: linear-gradient(135deg, rgba(10, 35, 66, 0.95) 0%, rgba(27, 107, 147, 0.95) 100%), 
                        url('hero-background.jpg') center/cover no-repeat;
            color: var(--bg-white);
            padding: 6rem 2rem 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23ffffff" opacity="0.05"/></svg>') repeat;
            animation: movePattern 20s linear infinite;
        }
        
        @keyframes movePattern {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }
        
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-text h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        
        .hero-text .highlight {
            color: var(--primary-green);
            position: relative;
            display: inline-block;
        }
        
        .hero-tagline {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: rgba(255,255,255,0.9);
            line-height: 1.8;
            font-weight: 500;
        }
        
        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .mv-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .mv-card:hover {
            background: rgba(255,255,255,0.15);
            border-color: var(--primary-green);
            transform: translateY(-5px);
        }
        
        .mv-card h3 {
            font-size: 1.3rem;
            color: var(--primary-green);
            margin-bottom: 0.75rem;
            font-family: 'Work Sans', sans-serif;
        }
        
        .mv-card p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.9);
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .stat-item:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-green);
            font-family: 'Crimson Pro', serif;
        }
        
        .stat-label {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.8);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        
        .btn-primary, .btn-secondary {
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            border: 2px solid;
            text-align: center;
        }
        
        .btn-primary {
            background: var(--primary-green);
            color: var(--primary-navy);
            border-color: var(--primary-green);
        }
        
        .btn-primary:hover {
            background: transparent;
            color: var(--primary-green);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 214, 108, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--bg-white);
            border-color: var(--bg-white);
        }
        
        .btn-secondary:hover {
            background: var(--bg-white);
            color: var(--primary-navy);
            transform: translateY(-3px);
        }
        
        /* Section Styles */
        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-tag {
            color: var(--primary-green);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .section-header h2 {
            font-size: 2.75rem;
            color: var(--primary-navy);
            margin-bottom: 1rem;
        }
        
        .section-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Programs Overview */
        .programs-overview {
            padding: 6rem 2rem;
            background: var(--bg-white);
        }
        
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .program-card {
            background: var(--bg-light);
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .program-card:hover {
            border-color: var(--primary-green);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            transform: translateY(-8px);
        }
        
        .program-header {
            background: var(--primary-navy);
            color: var(--bg-white);
            padding: 2.5rem;
            position: relative;
        }
        
        .program-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .program-header h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .program-header p {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
        }
        
        .program-preview {
            padding: 2rem;
        }
        
        .preview-list {
            list-style: none;
            margin-bottom: 1.5rem;
        }
        
        .preview-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .preview-list li:before {
            content: '✓';
            color: var(--primary-green);
            font-weight: 700;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .view-curriculum-btn {
            width: 100%;
            padding: 1rem;
            background: var(--primary-navy);
            color: var(--bg-white);
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .view-curriculum-btn:hover {
            background: var(--primary-green);
            color: var(--primary-navy);
        }
        
        /* Curriculum Detail Pages */
        .curriculum-detail {
            padding: 6rem 2rem;
            background: var(--bg-light);
            display: none;
        }
        
        .curriculum-detail.active {
            display: block;
        }
        
        .curriculum-header {
            text-align: center;
            margin-bottom: 4rem;
            padding: 3rem;
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-teal) 100%);
            color: var(--bg-white);
            border-radius: 12px;
        }
        
        .curriculum-header h2 {
            font-size: 3rem;
            color: var(--bg-white);
            margin-bottom: 1rem;
        }
        
        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }
        
        .back-btn:hover {
            gap: 1rem;
        }
        
        .curriculum-modules {
            display: grid;
            gap: 2rem;
        }
        
        .module-card {
            background: var(--bg-white);
            border-radius: 12px;
            padding: 2.5rem;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
        }
        
        .module-card:hover {
            border-color: var(--primary-green);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .module-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .module-number {
            width: 60px;
            height: 60px;
            background: var(--primary-navy);
            color: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            flex-shrink: 0;
        }
        
        .module-title h3 {
            font-size: 1.75rem;
            color: var(--primary-navy);
            margin-bottom: 0.25rem;
        }
        
        .module-duration {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        .module-topics {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }
        
        .topic-item {
            padding: 0.75rem 1rem;
            background: var(--bg-light);
            border-radius: 6px;
            font-size: 0.95rem;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .topic-item:before {
            content: '→';
            color: var(--primary-green);
            font-weight: 700;
            flex-shrink: 0;
        }
        
        /* Collaboration Section */
        .collaboration {
            padding: 6rem 2rem;
            background: var(--bg-light);
        }
        
        .collaboration-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .collaboration-card {
            background: var(--bg-white);
            border-radius: 12px;
            padding: 2rem;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .collaboration-card:hover {
            border-color: var(--primary-green);
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .collaboration-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .collaboration-card h3 {
            font-size: 1.3rem;
            color: var(--primary-navy);
            margin-bottom: 0.5rem;
        }
        
        .collaboration-type {
            color: var(--primary-green);
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Partnership Photos */
        .partnership-photos {
            margin-top: 4rem;
        }
        
        .photos-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .photo-card {
            background: var(--bg-white);
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
        }
        
        .photo-card:hover {
            border-color: var(--primary-green);
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .photo-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }
        
        .photo-caption {
            padding: 1.5rem;
        }
        
        .photo-caption h4 {
            font-size: 1.1rem;
            color: var(--primary-navy);
            margin-bottom: 0.5rem;
        }
        
        .photo-caption p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.5;
        }
        
        /* Companies Grid */
        .companies {
            padding: 6rem 2rem;
            background: var(--bg-light);
        }
        
        .companies-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }
        
        .company-logo {
            background: var(--bg-white);
            padding: 1.5rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
            min-height: 90px;
        }
        
        .company-logo:hover {
            border-color: var(--primary-green);
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .company-logo span {
            font-weight: 600;
            color: var(--primary-navy);
            font-size: 0.85rem;
            text-align: center;
        }
        
        /* Team Section */
        .team {
            padding: 6rem 2rem;
            background: var(--bg-white);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .team-card {
            background: var(--bg-light);
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
        }
        
        .team-card:hover {
            border-color: var(--primary-green);
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .team-photo {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-teal) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--primary-green);
            font-weight: 700;
            position: relative;
            overflow: hidden;
        }
        
        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .team-photo-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--primary-green);
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-teal) 100%);
        }
        
        .team-info {
            padding: 2rem;
            background: var(--bg-white);
        }
        
        .team-info h3 {
            font-size: 1.5rem;
            color: var(--primary-navy);
            margin-bottom: 0.5rem;
        }
        
        .team-role {
            color: var(--primary-green);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }
        
        .team-info p {
            color: var(--text-light);
            line-height: 1.7;
        }
        
        /* Enrollment Form */
        .enrollment {
            padding: 6rem 2rem;
            background: var(--bg-light);
        }
        
        .form-container {
            max-width: 900px;
            margin: 3rem auto 0;
            background: var(--bg-white);
            padding: 3rem;
            border-radius: 12px;
            border: 2px solid var(--border-color);
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group.full-width {
            grid-column: 1 / -1;
        }
        
        .form-group label {
            font-weight: 600;
            color: var(--primary-navy);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: 6px;
            font-size: 1rem;
            font-family: 'Work Sans', sans-serif;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-green);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-btn {
            background: var(--primary-navy);
            color: var(--bg-white);
            padding: 1.25rem 3rem;
            border: 2px solid var(--primary-navy);
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
            width: 100%;
        }
        
        .submit-btn:hover {
            background: var(--primary-green);
            border-color: var(--primary-green);
            color: var(--primary-navy);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 214, 108, 0.3);
        }
        
        /* Footer */
        footer {
            background: var(--primary-navy);
            color: var(--bg-white);
            padding: 4rem 2rem 2rem;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-green);
        }
        
        .footer-section p {
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.75rem;
        }
        
        .footer-section ul li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section ul li a:hover {
            color: var(--primary-green);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bg-white);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--primary-green);
            color: var(--primary-navy);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255,255,255,0.6);
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .stagger-1 { animation-delay: 0.1s; }
        .stagger-2 { animation-delay: 0.2s; }
        .stagger-3 { animation-delay: 0.3s; }
        .stagger-4 { animation-delay: 0.4s; }
        .stagger-5 { animation-delay: 0.5s; }
        .stagger-6 { animation-delay: 0.6s; }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-content,
            .partnership-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .programs-grid {
                grid-template-columns: 1fr;
            }
            
            .companies-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .collaboration-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            /* Mobile Navigation */
            .mobile-menu-toggle {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 92px;
                left: -100%;
                flex-direction: column;
                background: var(--primary-navy);
                width: 100%;
                padding: 2rem;
                gap: 1.5rem;
                transition: left 0.3s ease;
                max-height: calc(100vh - 92px);
                overflow-y: auto;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                width: 100%;
            }
            
            .nav-links a {
                display: block;
                padding: 0.75rem 0;
            }
            
            .cta-button {
                display: block;
                text-align: center;
            }
            
            /* Hero Section */
            .hero {
                padding: 3rem 1.5rem 2rem;
            }
            
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .hero-tagline {
                font-size: 1rem;
            }
            
            .mission-vision {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .mv-card {
                padding: 1.25rem;
            }
            
            .mv-card h3 {
                font-size: 1.1rem;
            }
            
            .mv-card p {
                font-size: 0.9rem;
            }
            
            .hero-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                padding: 1rem;
            }
            
            /* Section Headers */
            .section-header h2 {
                font-size: 2rem;
            }
            
            .section-header p {
                font-size: 1rem;
            }
            
            /* Programs */
            .programs-overview,
            .collaboration,
            .partnerships,
            .companies,
            .team,
            .enrollment {
                padding: 4rem 1.5rem;
            }
            
            .program-header {
                padding: 1.5rem;
            }
            
            .program-header h3 {
                font-size: 1.5rem;
            }
            
            .program-preview {
                padding: 1.5rem;
            }
            
            /* Curriculum Detail */
            .curriculum-detail {
                padding: 4rem 1.5rem;
            }
            
            .curriculum-header {
                padding: 2rem 1.5rem;
            }
            
            .curriculum-header h2 {
                font-size: 2rem;
            }
            
            .module-card {
                padding: 1.5rem;
            }
            
            .module-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            
            .module-title h3 {
                font-size: 1.5rem;
            }
            
            .module-topics {
                grid-template-columns: 1fr;
            }
            
            /* Collaboration */
            .collaboration-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .photos-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            /* Partnerships */
            .partnership-content {
                gap: 2rem;
            }
            
            .partner-logos {
                grid-template-columns: 1fr;
            }
            
            /* Companies */
            .companies-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            /* Team */
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .team-photo {
                height: 250px;
            }
            
            /* Form */
            .form-container {
                padding: 2rem 1.5rem;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            /* Footer */
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .logo-img {
                height: 50px;
            }
            
            .nav-container {
                padding: 0.75rem 1rem;
            }
            
            .hero-text h1 {
                font-size: 1.75rem;
            }
            
            .section-header h2 {
                font-size: 1.75rem;
            }
            
            .stat-number {
                font-size: 1.75rem;
            }
            
            .program-icon {
                font-size: 2.5rem;
            }
            
            .module-number {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
            }
            
            .collaboration-icon {
                font-size: 2.5rem;
            }
        }