/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-teal: #0B6E7F;
    --accent-orange: #F58A07;
    --dark-grey: #333333;
    --off-white: #F8F9FA;
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--off-white);
    cursor: none;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--accent-orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.6;
    transition: all 0.3s ease;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-teal);
}

.logo-k {
    position: relative;
    color: var(--primary-teal);
}

.logo-k::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: logoSwoosh 2s ease-in-out infinite alternate;
}

@keyframes logoSwoosh {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-grey);
    font-weight: 500;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-teal);
    font-family: var(--font-mono);
    text-shadow: 2px 0 var(--accent-orange), -2px 0 var(--primary-teal);
    animation: chromatic-aberration 0.3s ease;
}

@keyframes chromatic-aberration {
    0% { text-shadow: 0 0 transparent; }
    50% { text-shadow: 2px 0 var(--accent-orange), -2px 0 var(--primary-teal); }
    100% { text-shadow: 0 0 transparent; }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-teal);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--off-white) 0%, #e8f4f8 100%);
}

.digital-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 98%, var(--primary-teal) 100%),
        linear-gradient(0deg, transparent 98%, var(--primary-teal) 100%);
    background-size: 100px 100px;
    opacity: 0.1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-title:hover {
    animation: titleGlitch 0.5s ease;
}

@keyframes titleGlitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--dark-grey);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 138, 7, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 138, 7, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

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

.btn-secondary:hover {
    background: var(--primary-teal);
    color: var(--white);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--primary-teal);
    border-bottom: 2px solid var(--primary-teal);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-10px); }
    60% { transform: rotate(45deg) translateY(-5px); }
}

/* Sections */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 20px;
    position: relative;
}

.section-title:hover {
    font-family: var(--font-mono);
    animation: chromatic-aberration 0.3s ease;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--dark-grey);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Value Proposition */
.value-proposition {
    background: var(--white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: var(--off-white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: var(--accent-orange);
    transform: scale(1.1);
}

.icon {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 16px;
}

.value-description {
    color: var(--dark-grey);
    line-height: 1.6;
}

/* Programs Overview */
.programs-overview {
    background: var(--off-white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.program-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-orange));
    position: relative;
    overflow: hidden;
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.4"/><circle cx="40" cy="70" r="1" fill="white" opacity="0.5"/><circle cx="70" cy="80" r="2.5" fill="white" opacity="0.2"/></svg>');
    background-size: 100px 100px;
    animation: floatPattern 15s linear infinite;
}

@keyframes floatPattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, -100px); }
}

.program-content {
    padding: 32px;
}

.program-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 16px;
}

.program-description {
    color: var(--dark-grey);
    line-height: 1.6;
    margin-bottom: 24px;
}

.program-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: var(--transition-smooth);
}

.program-link::after {
    content: '→';
    margin-left: 8px;
    transition: var(--transition-smooth);
}

.program-link:hover {
    color: var(--primary-teal);
}

.program-link:hover::after {
    transform: translateX(4px);
}

/* Philosophy Teaser */
.philosophy-teaser {
    background: var(--white);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.philosophy-intro {
    font-size: 1.125rem;
    color: var(--dark-grey);
    margin-bottom: 24px;
    line-height: 1.7;
}

.philosophy-points {
    color: var(--dark-grey);
    margin-bottom: 32px;
    line-height: 1.7;
    font-style: italic;
}

.philosophy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.data-visualization {
    position: relative;
    width: 300px;
    height: 300px;
}

.data-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-orange);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    animation-delay: var(--delay);
}

.data-point:nth-child(1) { top: 20%; left: 20%; }
.data-point:nth-child(2) { top: 20%; right: 20%; }
.data-point:nth-child(3) { bottom: 20%; left: 20%; }
.data-point:nth-child(4) { bottom: 20%; right: 20%; }

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 138, 7, 0.7);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 0 20px rgba(245, 138, 7, 0);
    }
}

.connecting-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary-teal);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Partnership CTA */
.partnership-cta {
    background: linear-gradient(135deg, var(--primary-teal), #0a5a68);
    color: var(--white);
    text-align: center;
}

.partnership-cta .section-title {
    color: var(--white);
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--dark-grey);
    color: var(--off-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 16px;
}

.footer-description {
    line-height: 1.6;
    color: #ccc;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.contact-info p {
    margin-bottom: 8px;
    color: #ccc;
}

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

.social-link {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .philosophy-text .section-title {
        text-align: center;
    }
    
    .data-visualization {
        width: 200px;
        height: 200px;
    }
    
    .connecting-line {
        width: 150px;
        height: 150px;
    }
}

/* Animation on Scroll */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .custom-cursor,
    .cursor-trail {
        display: none;
    }
    
    body {
        cursor: auto;
    }
}


/* Page-Specific Styles */

/* Page Hero */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--off-white) 0%, #e8f4f8 100%);
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 24px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--dark-grey);
    line-height: 1.6;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--accent-orange);
    font-weight: 600;
}

/* Philosophy Page Styles */
.philosophy-visual-hero {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-orange);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.element-1 { top: 20%; left: 20%; animation-delay: 0s; }
.element-2 { top: 60%; left: 70%; animation-delay: 1.5s; }
.element-3 { top: 80%; left: 30%; animation-delay: 3s; }
.element-4 { top: 40%; left: 80%; animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.philosophy-content {
    padding: 80px 0;
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-main {
    max-width: none;
}

.philosophy-section {
    margin-bottom: 60px;
}

.content-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--dark-grey);
}

.highlight-box {
    background: var(--off-white);
    padding: 32px;
    border-left: 4px solid var(--accent-orange);
    margin: 32px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-teal);
    line-height: 1.6;
    margin: 0;
}

.interactive-diagram {
    margin: 40px 0;
}

.bridge-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
}

.bridge-point {
    background: var(--primary-teal);
    color: var(--white);
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
}

.bridge-span {
    flex: 1;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-orange), var(--primary-teal));
    margin: 0 20px;
    position: relative;
    border-radius: 2px;
}

.bridge-tech {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.imperfection-showcase {
    text-align: center;
    margin: 40px 0;
}

.glitch-text {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-teal);
    position: relative;
    display: inline-block;
    animation: glitch 3s infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: var(--accent-orange);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: var(--primary-teal);
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    10% { transform: translate(-2px, -2px); }
    20% { transform: translate(2px, 2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    30% { transform: translate(2px, -2px); }
    60% { transform: translate(-2px, 2px); }
}

.showcase-caption {
    margin-top: 16px;
    font-style: italic;
    color: var(--dark-grey);
}

.content-sidebar {
    position: sticky;
    top: 100px;
}

.philosophy-principles {
    background: var(--off-white);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 24px;
}

.principle-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.principle-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.principle-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 8px;
}

.principle-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--dark-grey);
    margin: 0;
}

.philosophy-quote {
    background: var(--primary-teal);
    color: var(--white);
    padding: 32px;
    border-radius: 12px;
}

.philosophy-quote blockquote {
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 0 16px 0;
    font-style: italic;
}

.philosophy-quote cite {
    font-size: 0.9rem;
    opacity: 0.8;
}

.philosophy-practice {
    padding: 80px 0;
    background: var(--off-white);
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.practice-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
}

.practice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.practice-visual {
    margin-bottom: 24px;
}

.practice-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.practice-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 16px;
}

.practice-description {
    color: var(--dark-grey);
    line-height: 1.6;
}

.philosophy-cta {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* Programs Page Styles */
.programs-detail {
    padding: 80px 0;
}

.program-detail-section {
    margin-bottom: 120px;
}

.program-detail-section:last-child {
    margin-bottom: 0;
}

.program-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.program-detail-grid.reverse {
    direction: rtl;
}

.program-detail-grid.reverse > * {
    direction: ltr;
}

.program-detail-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 16px;
}

.program-detail-subtitle {
    font-size: 1.25rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 32px;
}

.program-description {
    margin-bottom: 40px;
}

.program-description p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--dark-grey);
}

.program-features h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 24px;
}

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

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-content h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--dark-grey);
    margin: 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item-simple {
    padding: 16px;
    background: var(--off-white);
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
}

.program-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--off-white);
    border-radius: 12px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--primary-teal);
    font-weight: 600;
    margin-top: 8px;
}

.program-testimonial {
    background: var(--primary-teal);
    color: var(--white);
    padding: 32px;
    border-radius: 12px;
}

.program-testimonial blockquote {
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 0 16px 0;
    font-style: italic;
}

.program-testimonial cite {
    font-size: 0.9rem;
    opacity: 0.8;
}

.network-visualization {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 40px;
}

.network-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

.network-node.central {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-orange);
    width: 100px;
    height: 100px;
    z-index: 2;
}

.network-node:nth-child(2) { top: 10%; left: 30%; }
.network-node:nth-child(3) { top: 20%; right: 10%; }
.network-node:nth-child(4) { bottom: 20%; right: 20%; }
.network-node:nth-child(5) { bottom: 10%; left: 20%; }

.network-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><line x1="150" y1="150" x2="90" y2="60" stroke="%230B6E7F" stroke-width="2" opacity="0.5"/><line x1="150" y1="150" x2="240" y2="80" stroke="%230B6E7F" stroke-width="2" opacity="0.5"/><line x1="150" y1="150" x2="240" y2="220" stroke="%230B6E7F" stroke-width="2" opacity="0.5"/><line x1="150" y1="150" x2="60" y2="240" stroke="%230B6E7F" stroke-width="2" opacity="0.5"/></svg>') center/contain no-repeat;
}

.program-impact h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 16px;
}

.program-impact ul {
    list-style: none;
    padding: 0;
}

.program-impact li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: var(--dark-grey);
}

.lab-projects h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 24px;
}

.project-showcase {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.project-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--off-white);
    border-radius: 12px;
    align-items: flex-start;
}

.project-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.project-content h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 8px;
}

.project-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--dark-grey);
    margin: 0;
}

.lab-process h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 24px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--dark-grey);
    margin: 0;
}

.program-application {
    padding: 80px 0;
    background: var(--off-white);
    text-align: center;
}

.application-description {
    font-size: 1.125rem;
    color: var(--dark-grey);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.application-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.application-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.application-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 16px;
}

.application-card p {
    color: var(--dark-grey);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* About Page Styles */
.our-story {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-paragraph {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--dark-grey);
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-teal);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--accent-orange);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary-teal);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--dark-grey);
    margin: 0;
}

.team-section {
    padding: 80px 0;
    background: var(--off-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.member-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 8px;
}

.member-title {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 16px;
}

.member-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-grey);
    text-align: left;
}

.values-section {
    padding: 80px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    text-align: center;
    padding: 40px 24px;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 16px;
}

.value-description {
    color: var(--dark-grey);
    line-height: 1.6;
}

.impact-section {
    padding: 80px 0;
    background: var(--off-white);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.impact-stat {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
}

.impact-stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.impact-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 8px;
}

.impact-stat .stat-label {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 12px;
}

.stat-description {
    font-size: 0.95rem;
    color: var(--dark-grey);
    line-height: 1.5;
}

.join-us-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.join-description {
    font-size: 1.125rem;
    color: var(--dark-grey);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.join-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.join-option {
    background: var(--off-white);
    padding: 40px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.join-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.join-option h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 16px;
}

.join-option p {
    color: var(--dark-grey);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Partner Page Styles */
.partnership-types {
    padding: 80px 0;
    background: var(--white);
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.partnership-card {
    background: var(--off-white);
    padding: 40px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.partnership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.partnership-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    text-align: center;
}

.partnership-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 16px;
    text-align: center;
}

.partnership-description {
    color: var(--dark-grey);
    line-height: 1.6;
    margin-bottom: 32px;
    text-align: center;
}

.partnership-benefits,
.partnership-process {
    margin-bottom: 32px;
}

.partnership-benefits h4,
.partnership-process h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 16px;
}

.partnership-benefits ul,
.partnership-process ol {
    padding-left: 20px;
    color: var(--dark-grey);
}

.partnership-benefits li,
.partnership-process li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.success-stories {
    padding: 80px 0;
    background: var(--off-white);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.story-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-header {
    margin-bottom: 24px;
}

.story-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 8px;
}

.story-subtitle {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.95rem;
}

.story-description {
    font-style: italic;
    color: var(--dark-grey);
    line-height: 1.6;
    margin-bottom: 24px;
}

.story-results {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.result-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    min-width: 60px;
}

.result-label {
    font-size: 0.9rem;
    color: var(--dark-grey);
    line-height: 1.4;
}

.story-attribution {
    font-size: 0.9rem;
    color: var(--primary-teal);
    font-weight: 600;
}

.partnership-inquiry {
    padding: 80px 0;
    background: var(--white);
}

.inquiry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.inquiry-description {
    font-size: 1.125rem;
    color: var(--dark-grey);
    line-height: 1.7;
    margin-bottom: 32px;
}

.inquiry-info h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 16px;
}

.inquiry-info ul {
    padding-left: 20px;
    color: var(--dark-grey);
}

.inquiry-info li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.inquiry-info strong {
    color: var(--primary-teal);
}

.partnership-form {
    background: var(--off-white);
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(11, 110, 127, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-section {
    padding: 80px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3,
.contact-hours h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 16px;
}

.contact-info p,
.contact-hours p {
    color: var(--dark-grey);
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-details,
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item,
.hours-item {
    color: var(--dark-grey);
    line-height: 1.5;
}

.contact-item strong,
.hours-item strong {
    color: var(--primary-teal);
}

/* Blog Page Styles */
.featured-post {
    padding: 80px 0;
    background: var(--white);
}

.featured-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-label {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.featured-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 20px;
    line-height: 1.2;
}

.featured-excerpt {
    font-size: 1.125rem;
    color: var(--dark-grey);
    line-height: 1.7;
    margin-bottom: 24px;
}

.featured-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.meta-author,
.meta-date,
.meta-read-time {
    font-size: 0.9rem;
    color: var(--primary-teal);
    font-weight: 500;
}

.featured-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    background: var(--off-white);
    border: 2px dashed var(--primary-teal);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--primary-teal);
}

.image-placeholder p {
    color: var(--dark-grey);
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

.blog-categories {
    padding: 80px 0;
    background: var(--off-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.category-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 12px;
}

.category-description {
    color: var(--dark-grey);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.category-count {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.9rem;
}

.recent-posts {
    padding: 80px 0;
    background: var(--white);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.post-card {
    background: var(--off-white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.post-image {
    height: 200px;
    background: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-image .placeholder-icon {
    font-size: 2.5rem;
    color: var(--white);
}

.post-content {
    padding: 24px;
}

.post-category {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.post-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 12px;
    line-height: 1.3;
}

.post-excerpt {
    color: var(--dark-grey);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.post-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.post-meta .meta-author,
.post-meta .meta-date,
.post-meta .meta-read-time {
    font-size: 0.8rem;
    color: var(--primary-teal);
    font-weight: 500;
}

.posts-pagination {
    text-align: center;
    margin-top: 60px;
}

.newsletter-signup {
    padding: 80px 0;
    background: var(--off-white);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.newsletter-description {
    font-size: 1.125rem;
    color: var(--dark-grey);
    line-height: 1.7;
    margin-bottom: 32px;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-item span:last-child {
    color: var(--dark-grey);
    line-height: 1.5;
}

.newsletter-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
}

.signup-form .form-group {
    margin-bottom: 20px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--dark-grey);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary-teal);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: var(--primary-teal);
    font-weight: bold;
    font-size: 14px;
}

.privacy-note {
    font-size: 0.8rem;
    color: var(--dark-grey);
    margin-top: 16px;
    text-align: center;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .content-grid,
    .story-content,
    .program-detail-grid,
    .inquiry-content,
    .contact-grid,
    .featured-content,
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .program-detail-grid.reverse {
        direction: ltr;
    }
    
    .bridge-visual {
        flex-direction: column;
        gap: 20px;
    }
    
    .bridge-span {
        width: 4px;
        height: 60px;
        margin: 0;
    }
    
    .bridge-tech {
        top: 50%;
        left: -40px;
        transform: translateY(-50%);
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item::before {
        left: -24px;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .program-detail-title {
        font-size: 2rem;
    }
}

