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

:root {
    /* Irish-inspired brand colors for Next Hop Ireland */
    --primary-color: #1a4c3d;          /* Irish forest green - professional and trustworthy */
    --primary-dark: #0f3429;           /* Darker green for depth */
    --secondary-color: #2d6ba5;        /* Network blue - representing connectivity and technology */
    --accent-color: #f4a24c;           /* Warm amber - Irish warmth and energy */
    --success-color: #2d8653;          /* Celtic green for positive actions */
    --text-primary: #1e2d23;           /* Dark green-tinted text for readability */
    --text-secondary: #5a6b5d;         /* Muted green-gray for secondary text */
    --background: #ffffff;             /* Pure white for maximum readability */
    --background-alt: #f8faf9;         /* Very light green tint for alternating sections */
    --background-accent: #f0f5f3;      /* Subtle green background for cards */
    --border-color: #d1e1d6;           /* Soft green border */
    
    /* Enhanced gradients reflecting Irish landscape and technology */
    --gradient-primary: linear-gradient(135deg, #1a4c3d 0%, #2d6ba5 100%);     /* Forest to sky */
    --gradient-secondary: linear-gradient(135deg, #2d8653 0%, #f4a24c 100%);    /* Emerald to gold */
    --gradient-hero: linear-gradient(135deg, #0f3429 0%, #1a4c3d 60%, #2d6ba5 100%); /* Multi-tone hero */
    
    /* Accessibility-focused shadows */
    --shadow-sm: 0 1px 2px 0 rgba(26, 76, 61, 0.08);
    --shadow-md: 0 4px 6px -1px rgba(26, 76, 61, 0.12), 0 2px 4px -1px rgba(26, 76, 61, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(26, 76, 61, 0.15), 0 4px 6px -2px rgba(26, 76, 61, 0.08);
    --shadow-accent: 0 4px 14px 0 rgba(244, 162, 76, 0.25);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #f4a24c 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-launch-info {
    margin: 1.5rem 0;
}

.launch-announcement {
    background: rgba(244, 162, 76, 0.15);
    border: 2px solid rgba(244, 162, 76, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(244, 162, 76, 0.2);
    margin: 0;
}

.launch-announcement strong {
    color: #f4a24c;
    font-weight: 700;
}

.hero-disclaimer {
    margin: 1.5rem 0;
}

.disclaimer-text {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.15);
    margin: 0;
    line-height: 1.6;
}

.disclaimer-text strong {
    color: #ffc107;
    font-weight: 700;
}

.disclaimer-text a {
    color: #f4a24c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.disclaimer-text a:hover {
    color: #ffc107;
    text-decoration: underline;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Advanced Network Animation */
.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    opacity: 0.95;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.hero-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.4));
}

.advanced-network-animation {
    position: relative;
    width: 400px;
    height: 420px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: visible;
    padding: 20px 10px 10px 10px;
    box-sizing: border-box;
}

/* Network Layers */
.network-layer {
    position: absolute;
    width: calc(100% - 20px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
    left: 10px;
}

.core-layer {
    top: 75px;
    height: 60px;
}

.distribution-layer {
    top: 155px;
    height: 60px;
}

.access-layer {
    top: 235px;
    height: 60px;
}

.cloud-layer {
    top: 10px;
    height: 40px;
    justify-content: center;
}

/* Network Devices */
.core-router, .distribution-switch, .access-device, .cloud-node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.core-router:hover, .distribution-switch:hover, .access-device:hover, .cloud-node:hover {
    transform: translateY(-5px);
}

/* Device Icons */
.router-icon, .switch-icon, .device-icon, .cloud-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: device-pulse 3s ease-in-out infinite;
}

.core-router .router-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    animation-delay: 0s;
}

.distribution-switch .switch-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    animation-delay: 0.5s;
}

.access-device .device-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    animation-delay: 1s;
}

.cloud-node .cloud-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    animation-delay: 1.5s;
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
}

/* Device Labels */
.router-label, .switch-label, .device-label, .cloud-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    backdrop-filter: blur(5px);
}

/* SVG Connections */
.network-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connection-line {
    stroke-width: 2;
    fill: none;
    opacity: 0.8;
}

.core-link {
    stroke: #667eea;
    stroke-width: 3;
}

.primary-link {
    stroke: #f093fb;
    stroke-width: 2.5;
}

.secondary-link {
    stroke: #4facfe;
    stroke-width: 2;
}

.cloud-link {
    stroke: #43e97b;
    stroke-width: 2.5;
}

/* Data Flow Indicators */
.data-flow-indicators {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.data-packet {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
    opacity: 0;
}

.packet-1 {
    animation: packet-flow-1 4s ease-in-out infinite;
}

.packet-2 {
    animation: packet-flow-2 3.5s ease-in-out infinite;
    animation-delay: 1s;
}

.packet-3 {
    animation: packet-flow-3 4.5s ease-in-out infinite;
    animation-delay: 2s;
}

.packet-4 {
    animation: packet-flow-4 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Network Stats Overlay */
.network-stats {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
    margin-bottom: 10px;
}

.stat-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-unit {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.stat-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* Animations */
@keyframes device-pulse {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        transform: scale(1.05);
    }
}

@keyframes packet-flow-1 {
    0%, 100% { 
        left: 110px; 
        top: 95px; 
        opacity: 0; 
    }
    20% { 
        left: 200px; 
        top: 95px; 
        opacity: 1; 
    }
    40% { 
        left: 290px; 
        top: 95px; 
        opacity: 1; 
    }
    60% { 
        left: 310px; 
        top: 175px; 
        opacity: 1; 
    }
    80% { 
        left: 320px; 
        top: 215px; 
        opacity: 1; 
    }
    90% { 
        left: 320px; 
        top: 235px; 
        opacity: 1; 
    }
}

@keyframes packet-flow-2 {
    0%, 100% { 
        left: 190px; 
        top: 50px; 
        opacity: 0; 
    }
    20% { 
        left: 110px; 
        top: 75px; 
        opacity: 1; 
    }
    40% { 
        left: 110px; 
        top: 95px; 
        opacity: 1; 
    }
    60% { 
        left: 90px; 
        top: 175px; 
        opacity: 1; 
    }
    80% { 
        left: 80px; 
        top: 215px; 
        opacity: 1; 
    }
    90% { 
        left: 80px; 
        top: 235px; 
        opacity: 1; 
    }
}

@keyframes packet-flow-3 {
    0%, 100% { 
        left: 210px; 
        top: 50px; 
        opacity: 0; 
    }
    20% { 
        left: 290px; 
        top: 75px; 
        opacity: 1; 
    }
    40% { 
        left: 290px; 
        top: 95px; 
        opacity: 1; 
    }
    60% { 
        left: 200px; 
        top: 175px; 
        opacity: 1; 
    }
    80% { 
        left: 160px; 
        top: 215px; 
        opacity: 1; 
    }
    90% { 
        left: 160px; 
        top: 235px; 
        opacity: 1; 
    }
}

@keyframes packet-flow-4 {
    0%, 100% { 
        left: 120px; 
        top: 95px; 
        opacity: 0; 
    }
    25% { 
        left: 200px; 
        top: 175px; 
        opacity: 1; 
    }
    50% { 
        left: 240px; 
        top: 215px; 
        opacity: 1; 
    }
    75% { 
        left: 240px; 
        top: 235px; 
        opacity: 1; 
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .advanced-network-animation {
        width: 350px;
        height: 370px;
        padding: 15px 8px 8px 8px;
    }
    
    .router-icon, .switch-icon, .device-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .cloud-icon {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
    }
    
    .router-label, .switch-label, .device-label, .cloud-label {
        font-size: 0.6rem;
    }
    
    .network-stats {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        gap: 10px;
        margin-bottom: 5px;
    }
    
    .stat-indicator {
        padding: 6px 8px;
    }
    
    .stat-value {
        font-size: 1rem;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: var(--background);
}

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

.mission-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.mission-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--background-accent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--background);
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.vision-section, .journey-section {
    margin-bottom: 0.25rem;
}

.vision-section h3, .journey-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.vision-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
}

/* Curriculum Preview */
.curriculum-preview {
    padding: 100px 0;
    background: var(--background-alt);
}

.curriculum-timeline {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 50px;
    width: 2px;
    height: calc(100% + 10px);
    background: var(--border-color);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.curriculum-cta {
    text-align: center;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient-hero);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta .btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    box-shadow: var(--shadow-accent);
}

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

.cta .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--background);
}

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

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.contact-item {
    background: var(--background-accent);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
}

/* Personal Connect Section */
.personal-connect {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.personal-message {
    text-align: center;
    background: var(--gradient-primary);
    color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.personal-message p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.personal-message p:last-child {
    margin-bottom: 0;
}

.linkedin-invitation {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.linkedin-invitation .contact-link {
    color: #f4a24c;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(244, 162, 76, 0.3);
}

.linkedin-invitation .contact-link:hover {
    color: white;
    border-bottom-color: white;
    transform: translateY(-2px);
}

.linkedin-invitation em {
    display: block;
    margin-top: 1rem;
    font-size: 1.125rem;
    color: rgba(244, 162, 76, 0.9);
    font-weight: 500;
}

/* Enhanced Personal Message Section */
.personal-message-enhanced {
    background: linear-gradient(135deg, #1a4c3d 0%, #2d6ba5 50%, #1a4c3d 100%);
    color: white;
    padding: 0;
    border-radius: 24px;
    box-shadow: 
        0 20px 40px rgba(26, 76, 61, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.personal-message-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(244, 162, 76, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 107, 165, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 2.5rem 1.5rem 2.5rem;
    position: relative;
    z-index: 2;
}

.profile-avatar {
    position: relative;
    flex-shrink: 0;
}

.avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.avatar-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.message-intro h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f4a24c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    font-style: italic;
    margin: 0;
}

.message-content {
    padding: 0 2.5rem 1.5rem 2.5rem;
    position: relative;
    z-index: 2;
}

.message-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.message-text:last-child {
    margin-bottom: 0;
}

.connection-actions {
    padding: 1.5rem 2.5rem;
    position: relative;
    z-index: 2;
}

.primary-action {
    margin-bottom: 2rem;
    text-align: center;
}

.linkedin-connect-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #f4a24c 0%, #ff7b54 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 25px rgba(244, 162, 76, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.linkedin-connect-btn::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.6s ease;
}

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

.linkedin-connect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(244, 162, 76, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-icon {
    font-size: 1.25rem;
}

.btn-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.linkedin-connect-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.secondary-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.option-icon {
    font-size: 1.1rem;
}

.message-footer {
    padding: 1.5rem 2.5rem 2.5rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.inspirational-quote {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-style: italic;
    position: relative;
}

.quote-mark {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
    line-height: 1;
}

.quote-text {
    margin: 0 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f4a24c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.connection-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mobile Responsive for Enhanced Personal Message */
@media (max-width: 768px) {
    .message-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem 1rem 1.5rem;
    }
    
    .message-intro h3 {
        font-size: 1.5rem;
    }
    
    .intro-subtitle {
        font-size: 1rem;
    }
    
    .message-content {
        padding: 0 1.5rem 1rem 1.5rem;
    }
    
    .connection-actions {
        padding: 1rem 1.5rem;
    }
    
    .linkedin-connect-btn {
        width: 100%;
        justify-content: center;
        padding: 1.25rem 2rem;
    }
    
    .secondary-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-option {
        justify-content: center;
        width: 100%;
    }
    
    .message-footer {
        padding: 1rem 1.5rem 2rem 1.5rem;
    }
    
    .connection-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
}

/* Full Selection Policy Section */
.selection-policy-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin-top: 4rem;
}

.selection-policy-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.selection-policy-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.selection-policy-section .section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Two-Column Layout */
.policy-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.policy-column {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.policy-column:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.domestic-column {
    border-color: #22c55e;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.international-column {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

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

.column-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.column-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.column-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

.international-criteria {
    list-style: none;
    padding: 0;
    margin: 0;
}

.international-criteria li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.international-criteria li:hover {
    background: rgba(255, 255, 255, 0.9);
}

.criteria-icon {
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Review Process Timeline */
.review-process {
    margin-bottom: 4rem;
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-header h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.process-header p {
    font-size: 1.125rem;
    color: #64748b;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.timeline-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Fairness Commitment */
.fairness-commitment {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.commitment-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.commitment-header h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #92400e;
    margin: 0;
}

.commitment-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #78350f;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Info Link Styling */
.info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.2s ease;
    margin-left: 0.5rem;
}

.info-link:hover {
    color: #1d4ed8;
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
    text-decoration: none;
}

.info-link:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Selection Policy Mobile Responsiveness */
@media (max-width: 768px) {
    .policy-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .selection-policy-section .section-header h2 {
        font-size: 2rem;
    }
    
    .column-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .column-header h3 {
        font-size: 1.25rem;
    }
    
    .policy-column {
        padding: 1.5rem;
    }
    
    .fairness-commitment {
        padding: 1.5rem;
    }
    
    .commitment-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .commitment-header h3 {
        font-size: 1.5rem;
    }
    
    .info-link {
        margin-left: 0;
        margin-top: 0.5rem;
        display: block;
        text-align: center;
        width: fit-content;
        margin: 0.5rem auto 0 auto;
    }
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .disclaimer-text {
        font-size: 0.875rem;
        padding: 0.875rem 1.25rem;
        line-height: 1.5;
    }
    
    .hero-logo-img {
        max-width: 220px;
    }
    
    .network-animation {
        width: 250px;
        height: 250px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-marker {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .personal-message {
        padding: 2rem 1.5rem;
    }
    
    .personal-message p {
        font-size: 1rem;
    }
    
    .linkedin-invitation .contact-link {
        font-size: 1rem;
    }
    
    .linkedin-invitation em {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-logo-img {
        max-width: 180px;
    }
    
    .launch-announcement {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Page Hero Section */
.page-hero {
    padding: 150px 0 80px;
    background: var(--gradient-hero);
    color: white;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Curriculum Page Styles */
.curriculum-overview {
    padding: 100px 0;
    background: var(--background);
}

/* ENEP Program Highlight */
.enep-highlight {
    margin: 4rem 0;
    position: relative;
}

.enep-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, rgba(0, 100, 0, 0.05) 0%, rgba(26, 54, 93, 0.05) 100%);
    border: 1px solid rgba(0, 150, 0, 0.2);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.enep-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #228B22, #32CD32, #00FF00);
}

.enep-badge-container {
    position: relative;
    flex-shrink: 0;
}

.enep-badge {
    width: 150px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 150, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.badge-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(ellipse, rgba(0, 255, 0, 0.2) 0%, transparent 70%);
    border-radius: 20px;
    animation: pulse-glow 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.enep-content:hover .enep-badge {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 150, 0, 0.4);
}

.enep-text {
    flex: 1;
}

.enep-header {
    margin-bottom: 2rem;
}

.enep-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #228B22, #32CD32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enep-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-style: italic;
    opacity: 0.9;
}

.enep-description p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.enep-intro {
    font-size: 1.25rem !important;
    font-weight: 500;
    color: var(--text-primary) !important;
}

.enep-mission {
    background: rgba(0, 150, 0, 0.1);
    border-left: 4px solid #32CD32;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.mission-highlight {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
}

.mission-highlight strong {
    color: #228B22;
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .enep-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .enep-badge {
        width: 120px;
        height: auto;
    }
    
    .enep-title {
        font-size: 1.875rem;
    }
    
    .enep-description p {
        font-size: 1rem;
    }
    
    .enep-intro {
        font-size: 1.125rem !important;
    }
}

/* ENEP Badge Modal */
.enep-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.enep-modal-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    text-align: center;
}

.enep-modal-badge {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 150, 0, 0.4);
    transition: all 0.3s ease;
    animation: zoomIn 0.3s ease;
}

.enep-modal-close {
    position: absolute;
    top: -10px;
    right: -10px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.enep-modal-close:hover {
    background: rgba(255, 0, 0, 0.7);
    transform: scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.3);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile modal adjustments */
@media (max-width: 768px) {
    .enep-modal-content {
        margin: 10% auto;
        padding: 10px;
        width: 95%;
    }
    
    .enep-modal-badge {
        max-width: 400px;
    }
    
    .enep-modal-close {
        font-size: 28px;
        width: 40px;
        height: 40px;
    }
}

.curriculum-phases {
    max-width: 1000px;
    margin: 0 auto;
}

.phase-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.phase-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phase-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.phase-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.phase-duration {
    opacity: 0.9;
    font-size: 1rem;
}

.phase-content {
    padding: 2rem;
}

.phase-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.topic-item {
    background: var(--background-accent);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.topic-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.topic-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Learning Methods */
.learning-methods {
    padding: 100px 0;
    background: var(--background-accent);
}

/* Learning Philosophy */
.learning-philosophy {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 4rem;
    border: 1px solid var(--border-color);
}

.philosophy-content {
    padding: 3rem;
    text-align: center;
}

.philosophy-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-content p:last-child {
    margin-bottom: 0;
    font-weight: 500;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.method-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.method-card:hover::before {
    transform: scaleY(1);
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.method-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.method-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.method-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Progressive Mastery */
.progressive-mastery {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 0;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.mastery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 400px;
}

.mastery-text {
    padding: 3rem;
    color: white;
}

.mastery-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.mastery-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.mastery-text p:last-child {
    margin-bottom: 0;
}

.mastery-image {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.framework-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.framework-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.clickable-image {
    cursor: pointer;
}

.image-click-hint {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mastery-image:hover .image-click-hint {
    opacity: 1;
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.image-modal.show {
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: modalZoom 0.3s ease-out;
}

.modal-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    user-select: none;
}

.modal-close:hover {
    color: #f56565;
}

.modal-caption {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 15px;
    padding: 0 20px;
}

@keyframes modalZoom {
    from {
        transform: scale(0.3);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive adjustments for learning methods */
@media (max-width: 768px) {
    .philosophy-content {
        padding: 2rem;
    }
    
    .philosophy-content p {
        font-size: 1rem;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .method-card {
        padding: 2rem;
    }
    
    .mastery-content {
        grid-template-columns: 1fr;
    }
    
    .mastery-text {
        padding: 2.5rem 2rem;
    }
    
    .mastery-text h3 {
        font-size: 1.75rem;
    }
    
    .mastery-image {
        padding: 0 2rem 2rem 2rem;
    }
    
    /* Modal responsive adjustments */
    .modal-content {
        max-width: 98%;
        max-height: 98%;
    }
    
    .modal-close {
        top: -35px;
        font-size: 30px;
    }
    
    .modal-caption {
        font-size: 0.8rem;
        margin-top: 10px;
    }
    
    .image-click-hint {
        font-size: 0.8rem;
        bottom: -30px;
    }
    
    /* Instructor Bio Mobile Responsive */
    .instructor-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center;
        padding: 0 1rem !important;
        display: flex !important;
        flex-direction: column;
    }
    
    .instructor-text {
        max-width: 100% !important;
        order: 2;
        padding: 0 !important;
        width: 100%;
    }
    
    .instructor-carousel {
        order: 1;
        width: 100% !important;
        display: flex !important;
        justify-content: center;
        padding: 0 !important;
        margin: 0 auto;
    }
    
    .bio-text .intro {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .bio-text p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .beliefs {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .belief-item {
        margin-bottom: 1.25rem;
    }
    
    .belief-item p {
        font-size: 1rem;
    }
    
    .commitment {
        font-size: 1.1rem;
    }
    
    .carousel-container {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        border-radius: 16px;
    }
    
    .carousel-wrapper {
        height: 350px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .carousel-prev {
        left: 8px;
    }
    
    .carousel-next {
        right: 8px;
    }
    
    .carousel-dots {
        bottom: 15px;
        gap: 6px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Prerequisites */
.prerequisites {
    padding: 100px 0;
    background: var(--background);
}

.prerequisites-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.prereq-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.prereq-list {
    list-style: none;
    padding: 0;
}

.prereq-list li {
    background: var(--background-accent);
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.prereq-list li::before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Enhanced Prerequisites Section */
.prerequisites {
    background: linear-gradient(135deg, var(--background) 0%, rgba(26, 54, 93, 0.05) 100%) !important;
}

/* Assessment Introduction */
.assessment-intro {
    text-align: center;
    margin: 3rem 0;
}

.intro-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.intro-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Prerequisites Grid */
.prerequisites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Prerequisite Cards */
.prereq-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.prereq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.prereq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prereq-card:hover::before {
    opacity: 1;
}

/* Card Headers */
.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.tech-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.personal-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.time-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.card-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.difficulty-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.difficulty-badge.beginner {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.difficulty-badge.mindset {
    background: rgba(156, 39, 176, 0.2);
    color: #E91E63;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.difficulty-badge.commitment {
    background: rgba(255, 152, 0, 0.2) !important;
    color: #000000 !important;
    border: 1px solid rgba(255, 152, 0, 0.3) !important;
    display: inline-block !important;
    visibility: visible !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 20px !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    width: auto !important;
    height: auto !important;
    min-width: auto !important;
    max-width: none !important;
    opacity: 1 !important;
    text-indent: 0 !important;
    line-height: normal !important;
    text-shadow: none !important;
    text-decoration: none !important;
    content: none !important;
    position: relative !important;
    z-index: 999 !important;
}

/* Card Content */
.card-content {
    margin-bottom: 2rem;
}

.card-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Requirements List */
.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.requirement-item {
    transition: all 0.2s ease;
}

.requirement-item:hover {
    transform: translateX(5px);
}

/* Custom Checkbox */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    position: relative;
}

.checkbox-container input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    cursor: pointer;
}

.checkmark {
    height: 20px;
    width: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
    display: inline-block;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.checkbox-container:hover .checkmark {
    border-color: var(--primary-color);
    background: rgba(26, 54, 93, 0.3);
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(26, 54, 93, 0.3);
}

.checkbox-container input:checked ~ .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.requirement-text {
    flex: 1;
}

.requirement-text strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.requirement-detail {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Progress Bars */
.card-progress {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 4px;
}

.tech-progress {
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.personal-progress {
    background: linear-gradient(90deg, #f093fb, #f5576c);
}

.time-progress {
    background: linear-gradient(90deg, #4facfe, #00f2fe);
}

.progress-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Readiness Assessment */
.readiness-assessment {
    margin-top: 3rem;
    margin-bottom: -2rem;
    display: flex;
    justify-content: center;
}

.assessment-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.assessment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), #E91E63);
}

.assessment-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.assessment-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.assessment-header h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.assessment-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.8;
}

.overall-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) 0deg, rgba(255, 255, 255, 0.1) 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    transition: all 0.5s ease;
}

.score-circle::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background: var(--background);
    border-radius: 50%;
    z-index: 1;
}

.score-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: relative;
}

.score-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.score-total {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: -0.25rem;
}

.score-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
    opacity: 0.7;
}

.score-feedback {
    flex: 1;
    text-align: left;
}

.feedback-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.readiness-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.badge-icon {
    font-size: 1rem;
}

.readiness-badge.not-ready {
    background: rgba(158, 158, 158, 0.2);
    color: #9E9E9E;
    border: 1px solid rgba(158, 158, 158, 0.3);
}

.readiness-badge.getting-ready {
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.readiness-badge.ready {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.readiness-badge.very-ready {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
}

.score-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-icon {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.breakdown-label {
    flex: 1;
    font-weight: 500;
    color: var(--text-primary);
}

.breakdown-score {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.encouragement-message {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.message-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.message-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Career Outcomes */
.career-outcomes {
    padding: 100px 0;
    background: var(--background-accent);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.outcome-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.outcome-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.outcome-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.salary-range {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    box-shadow: var(--shadow-accent);
}

/* Instructor Bio Section */
.instructor-bio {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.instructor-bio::before {
    content: '';
    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"><defs><pattern id="instructor-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(59,130,246,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23instructor-grid)"/></svg>');
    opacity: 0.7;
}

.instructor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.instructor-text {
    max-width: 600px;
}

.bio-text .intro {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.bio-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.beliefs {
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.belief-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.belief-item:last-child {
    margin-bottom: 0;
}

.belief-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.belief-item p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.belief-item em {
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

.commitment {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.6;
}

.signature {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.signature-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

/* Carousel Styles */
.instructor-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-container {
    position: relative;
    max-width: 600px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.instructor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

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

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    border-color: var(--primary-color);
    transform: scale(1.3);
}

/* Application Page Styles */
.application-process {
    padding: 80px 0;
    background: var(--background-accent);
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.step-item::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 50px;
    width: 2px;
    height: calc(100% + 10px);
    background: var(--border-color);
}

.step-item:last-child::before {
    display: none;
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Application Form */
.application-form-section {
    padding: 80px 0;
    background: var(--background);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.form-header {
    background: var(--gradient-hero);
    color: white;
    padding: 2rem;
    text-align: center;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-header p {
    opacity: 0.9;
    font-size: 1.125rem;
}

.application-form {
    padding: 2rem;
}

.form-section {
    margin-bottom: 3rem;
}

.form-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    line-height: 1.5;
}

.form-submit {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.form-note {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Program Information */
.program-info {
    padding: 80px 0;
    background: var(--background-accent);
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.info-card small {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--background);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--background-alt);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.faq-answer a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    transform: translateY(-1px);
}

/* Impact & Vision Page Styles */

/* Impact Hero */
.impact-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-primary);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.hero-pattern {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 25% 25%, white 2px, transparent 2px),
                      radial-gradient(circle at 75% 75%, white 2px, transparent 2px);
    background-size: 60px 60px;
    animation: float 20s ease-in-out infinite;
}

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

.impact-hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
    font-size: 1.25rem;
}

.badge-text {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-style: italic;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Section Common Styles */
.section-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

/* Challenge Section */
.challenge-section {
    padding: 120px 0;
    background: var(--background);
}

.challenge-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.lead-text {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.emphasis-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

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

.challenge-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.challenge-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.challenge-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.challenge-philosophy {
    background: var(--background-accent);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 2px solid var(--primary-color);
    position: relative;
}

.philosophy-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.philosophy-content p:last-child {
    margin-bottom: 0;
}

/* Validated Insights Section */
.insights-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.insights-section::before {
    content: '';
    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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.insights-section .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.insights-section .section-header h2 {
    color: white;
}

.insights-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.insight-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.insight-card.primary::before {
    background: linear-gradient(90deg, #f56565, #ed8936);
}

.insight-card.secondary::before {
    background: linear-gradient(90deg, #4299e1, #3182ce);
}

.insight-card.tertiary::before {
    background: linear-gradient(90deg, #9f7aea, #805ad5);
}

.insight-card.quaternary::before {
    background: linear-gradient(90deg, #38b2ac, #319795);
}

.insight-card.quinary::before {
    background: linear-gradient(90deg, #48bb78, #38a169);
}

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

.insight-card:hover::before {
    height: 6px;
}

.insight-number {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-highlight {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-unit {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    font-weight: 600;
}

.insight-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.3;
}

.insight-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.insight-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.insight-list li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
}

.insight-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #68d391;
    font-weight: bold;
    font-size: 1.1rem;
}

.insight-sources {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.source {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.source:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Data Validation Statement */
.data-validation {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.validation-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.validation-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* Solution Section */
.solution-section {
    padding: 120px 0;
    background: var(--background-accent);
}

.solution-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.bold-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

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

.offering-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.offering-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.offering-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.offering-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Vision Timeline */
.vision-section {
    padding: 120px 0;
    background: var(--background);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.timeline {
    max-width: 800px;
    margin: 4rem auto;
    position: relative;
}

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

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    min-width: 120px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.timeline-year {
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.timeline-list {
    list-style: none;
    padding: 0;
}

.timeline-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
}

.timeline-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.vision-statement {
    text-align: center;
    max-width: 700px;
    margin: 4rem auto 0 auto;
    background: var(--gradient-primary);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.vision-statement p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0;
}

/* Impact Outcomes */
.impact-outcomes {
    padding: 120px 0;
    background: var(--background-accent);
}

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

.outcome-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.outcome-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.outcome-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
}

.impact-quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.impact-quote blockquote {
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    font-size: 1.375rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    position: relative;
}

.impact-quote blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 2rem;
    opacity: 0.3;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: var(--background);
}

.cta-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.cta-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-card.sponsor {
    border-color: #22c55e;
}

.cta-card.partner {
    border-color: #3b82f6;
}

.cta-card.spread {
    border-color: #8b5cf6;
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.cta-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.cta-button.primary {
    background: #22c55e;
    color: white;
}

.cta-button.primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: #3b82f6;
    color: white;
}

.cta-button.secondary:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.cta-button.tertiary {
    background: #8b5cf6;
    color: white;
}

.cta-button.tertiary:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    text-align: center;
}

.final-cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.final-cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .phase-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .prerequisites-content {
        grid-template-columns: 1fr;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-number {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .step-item::before {
        display: none;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
        max-height: 1200px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .phase-content {
        padding: 1.5rem;
    }
    
    .application-form {
        padding: 1.5rem;
    }
    
    .form-header {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 0.875rem 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem 1rem;
        max-height: 1400px;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Carousel Mobile Styles for Small Screens */
    .carousel-container {
        margin: 0 auto;
        border-radius: 12px;
        width: 100%;
    }
    
    .carousel-wrapper {
        height: 280px;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
    
    .carousel-dots {
        bottom: 10px;
        gap: 4px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    /* Impact Page Mobile Styles */
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.25rem !important;
    }
    
    .hero-stats {
        gap: 2rem !important;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
    }
    
    .challenge-grid,
    .offering-grid,
    .outcomes-grid,
    .cta-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .challenge-philosophy,
    .vision-statement {
        padding: 2rem !important;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-marker {
        min-width: auto;
        align-self: flex-start;
    }
    
    .lead-text {
        font-size: 1.25rem !important;
    }
    
    .bold-text {
        font-size: 1.25rem !important;
    }
    
    .final-cta-content h2 {
        font-size: 2rem !important;
    }
    
    .impact-quote blockquote {
        font-size: 1.125rem !important;
        padding: 2rem !important;
    }
    
    .cta-card {
        padding: 2rem !important;
    }
    
    /* Insights Section Mobile */
    .insights-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .insight-card {
        padding: 2rem !important;
    }
    
    .insight-number {
        padding: 1rem !important;
    }
    
    .stat-highlight {
        font-size: 2.5rem !important;
    }
    
    .insight-content h3 {
        font-size: 1.25rem !important;
    }
    
    .data-validation {
        padding: 2rem !important;
    }
    
    .validation-content h3 {
        font-size: 1.5rem !important;
    }
    
    .validation-content p {
        font-size: 1rem !important;
    }
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sponsors Page Styles */
.sponsors-showcase {
    padding: 5rem 0;
    background: var(--background-alt);
}

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

.no-sponsors-placeholder {
    display: none; /* Hidden by default, shown by JavaScript when no sponsors */
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
}

.no-sponsors-placeholder.show {
    display: block;
}

.placeholder-content {
    max-width: 600px;
    margin: 0 auto;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.no-sponsors-yet h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
}

.no-sponsors-yet p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.sponsor-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(20px);
    animation: sponsorFadeIn 0.6s ease forwards;
}

.sponsor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Staggered animation for sponsor cards */
.sponsor-card:nth-child(1) { animation-delay: 0.1s; }
.sponsor-card:nth-child(2) { animation-delay: 0.2s; }
.sponsor-card:nth-child(3) { animation-delay: 0.3s; }
.sponsor-card:nth-child(4) { animation-delay: 0.4s; }
.sponsor-card:nth-child(5) { animation-delay: 0.5s; }
.sponsor-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes sponsorFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sponsor-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.sponsor-logo-img {
    max-width: 200px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.sponsor-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.sponsor-statement {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.sponsor-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.sponsor-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--gradient-secondary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sponsor-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.sponsor-tier {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefits-section {
    padding: 5rem 0;
    background: var(--background-primary);
}

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

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.cta-section {
    padding: 5rem 0;
    background: var(--gradient-hero);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content > p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.sponsorship-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.sponsorship-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.sponsorship-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.sponsorship-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.sponsorship-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-sponsor {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-sponsor h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.contact-sponsor > p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.contact-options .btn {
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.contact-note {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
    margin-top: 1.5rem;
}

/* Responsive styles for sponsors page */
@media (max-width: 768px) {
    .no-sponsors-placeholder {
        padding: 2.5rem 1.5rem;
        margin-top: 1.5rem;
    }
    
    .placeholder-icon {
        font-size: 3rem;
    }
    
    .placeholder-content h3 {
        font-size: 1.5rem;
    }
    
    .placeholder-content p {
        font-size: 1rem;
    }
    
    .sponsor-card {
        padding: 1.5rem;
    }
    
    .sponsor-logo-img {
        max-width: 150px;
        max-height: 60px;
    }
    
    .sponsor-name {
        font-size: 1.25rem;
    }
    
    .sponsor-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .sponsor-link {
        justify-content: center;
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }
    
    .sponsors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .contact-sponsor {
        padding: 2rem;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-options .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .sponsorship-types {
        grid-template-columns: 1fr;
    }
}

/* Program Updates Page Styles */

/* Updates Hero Section */
.updates-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-primary);
    overflow: hidden;
}

.updates-hero .hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.updates-hero .hero-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, white 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, white 2px, transparent 2px);
    background-size: 60px 60px;
    animation: float 20s ease-in-out infinite;
}

.updates-hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.updates-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        transform: scale(1.05);
    }
}

.updates-hero .badge-icon {
    font-size: 1.25rem;
}

.updates-hero .badge-text {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.updates-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.updates-hero .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-style: italic;
}

.updates-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.updates-hero .stat-item {
    text-align: center;
}

.updates-hero .stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #f4a24c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.updates-hero .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Timeline Section */
.timeline-section {
    padding: 120px 0;
    background: var(--background);
    position: relative;
}

.program-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Timeline Entry */
.timeline-entry {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.timeline-entry.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-entry:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-entry:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-entry:nth-child(even) .timeline-card {
    margin-left: 0;
    margin-right: 2rem;
}

.timeline-entry:nth-child(odd) .timeline-card {
    margin-left: 2rem;
    margin-right: 0;
}

/* Timeline Date */
.timeline-date {
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.date-circle {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(26, 76, 61, 0.3);
    border: 4px solid white;
    position: relative;
    overflow: hidden;
}

.date-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.date-year {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Timeline Content */
.timeline-content {
    flex: 1;
    position: relative;
}

.timeline-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 5;
}

.timeline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Card Header */
.card-header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.card-header.milestone {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.card-header.strategy {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.card-header.announcement {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.card-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.card-category {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

/* Card Body */
.card-body {
    padding: 2rem;
}

.card-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-body > p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Update Highlights */
.update-highlights {
    margin: 2rem 0;
    background: var(--background-accent);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    color: var(--primary-color);
}

/* Update Impact */
.update-impact {
    background: rgba(244, 162, 76, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

.update-impact p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.update-impact strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Update Footer */
.update-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.update-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.update-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Timeline Connector */
.timeline-connector {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    z-index: -1;
}

.connector-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.connector-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0.4),
        transparent);
    animation: pulse-down 4s ease-in-out infinite;
}

@keyframes pulse-down {
    0% { 
        top: 0;
        opacity: 1;
    }
    100% { 
        top: 100%;
        opacity: 0;
    }
}

/* Future Updates */
.future-updates {
    margin-top: 4rem;
    text-align: center;
}

.future-card {
    background: var(--gradient-secondary);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.future-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent);
    animation: slide-across 3s ease-in-out infinite;
}

@keyframes slide-across {
    0% { left: -100%; }
    100% { left: 100%; }
}

.future-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.future-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.future-card p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.future-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stay Connected Section */
.stay-connected {
    padding: 120px 0;
    background: var(--background-accent);
}

.connected-content {
    text-align: center;
}

.connected-text {
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.connected-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.connected-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.connected-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.connection-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.connection-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.connection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.connection-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.connection-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.connection-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.connection-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.connection-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    transform: translateX(5px);
}

/* Responsive Design for Program Updates */
@media (max-width: 768px) {
    .updates-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .updates-hero .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .updates-hero .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .updates-hero .stat-number {
        font-size: 2.5rem;
    }
    
    .timeline-entry {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .timeline-entry:nth-child(even) .timeline-content {
        text-align: center;
    }
    
    .timeline-entry .timeline-card {
        margin: 1.5rem 0 0 0 !important;
        max-width: 100%;
    }
    
    .date-circle {
        width: 100px;
        height: 100px;
    }
    
    .date-day {
        font-size: 1.75rem;
    }
    
    .date-month {
        font-size: 0.8rem;
    }
    
    .date-year {
        font-size: 0.7rem;
    }
    
    .timeline-connector {
        display: none;
    }
    
    .card-header {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .card-body h3 {
        font-size: 1.25rem;
    }
    
    .card-body > p {
        font-size: 1rem;
    }
    
    .update-highlights,
    .update-impact {
        padding: 1.25rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .update-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .future-card {
        padding: 2rem 1.5rem;
    }
    
    .future-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .future-actions .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .connected-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .connection-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .updates-hero .hero-title {
        font-size: 2rem;
    }
    
    .updates-hero .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .updates-hero .stat-number {
        font-size: 2rem;
    }
    
    .date-circle {
        width: 80px;
        height: 80px;
    }
    
    .date-day {
        font-size: 1.5rem;
    }
    
    .card-header {
        padding: 1rem;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    .future-card {
        padding: 1.5rem 1rem;
    }
    
    .connected-text h2 {
        font-size: 2rem;
    }
    
    .connected-text p {
        font-size: 1.125rem;
    }
}