/* ===========================================
   Undaunted Spirits - Main Stylesheet
   Shared across all language versions
   =========================================== */

/* Import handwritten font for personal touch */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500;600&display=swap');

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

:root {
    /* Primary colors */
    --blue-primary: #0057B7;
    --blue-dark: #003d82;
    --gold-primary: #FFD700;
    --blue-secondary: #4A90E2;

    /* Design system neutrals */
    --bg-page: #FAF8F5;
    --bg-white: #FFFFFF;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --border: #E0E0E0;
    --bg-alt: #F9F9F9;
    
    /* Warm community colors */
    --warm-white: #FDFCFA;
    --warm-cream: #FFF9E6;
    --warm-gray: #F5F5F0;
    --warm-terracotta: #D4A574;
    
    /* Spacing scale (4px base) */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-6: 24px;
    --space-8: 32px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.1);
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 999px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-page);
}

/* Handwritten accent style */
.handwritten {
    font-family: 'Caveat', cursive;
    font-weight: 600;
}

.handwritten-accent {
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    color: var(--blue-primary);
    font-weight: 500;
}

.layout-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 4rem 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Navigation */
/* Nav container wrapper - needed for sticky to work */
#nav-container {
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0057B7;
    line-height: 1.2;
}

.logo-text-small {
    font-size: 0.75rem;
    color: #666;
    font-weight: normal;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lang-switch {
    padding: 0.5rem 1rem;
    background: #f5f5f5;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    color: #0057B7;
    text-decoration: none;
}

.lang-switch:hover {
    background: #e5e5e5;
}

.lang-switch .inactive-lang {
    color: #666;
}

.donate-btn-nav {
    background: #FFD700;
    color: #333;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.donate-btn-nav:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,215,0,0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0,87,183,0.92), rgba(0,87,183,0.88));
    color: white;
    padding: var(--space-20) 2rem; /* 80px - hero section */
    text-align: center;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-tagline {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
}

.hero-meta {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    max-width: 720px;
    margin: 0 auto 2rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.impact-section {
    padding: var(--space-12) 0; /* 48px - standard section */
    background: var(--bg-alt);
}

.impact-section .layout-container {
    max-width: 1100px;
}

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

.stat-card {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: var(--space-6); /* 24px */
    border-radius: var(--radius-lg); /* 12px */
    box-shadow: var(--shadow-md);
    text-align: left;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: #FFD700;
    color: #333;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary:hover {
    background: #FFC700;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,215,0,0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #0057B7;
}

/* Impact Stats */
.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #0057B7;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

/* Mission Section */
.mission {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Story Section - Volunteer Spotlight */
.story-section {
    background: var(--bg-alt);
    padding: var(--space-16) 0; /* 64px - standard section */
}

.story-section .section-header {
    margin-bottom: var(--space-8, 2rem);
}

.story-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-6); /* 24px horizontal */
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--space-12); /* 48px */
    align-items: start;
}

.story-section .story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft, 0 4px 20px rgba(0,0,0,0.06));
    max-height: 480px;
    align-self: start;
}

.story-section .story-image img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.story-text h3 {
    font-size: 2rem;
    color: var(--blue-primary, #0057B7);
    margin-bottom: 1rem;
}

.story-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.story-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
}

.story-tagline {
    background: white;
    padding: 1.5rem;
    border-left: 4px solid var(--gold-primary, #FFD700);
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
    box-shadow: var(--shadow-soft, 0 4px 20px rgba(0,0,0,0.06));
}

.story-tagline strong {
    color: var(--blue-primary, #0057B7);
}

.story-text .btn-primary {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .story-section {
        padding: 3rem 1.5rem;
    }
    
    .story-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-section .story-image {
        max-height: 320px;
        border-radius: 16px;
    }
    
    .story-section .story-image img {
        max-height: 320px;
    }
    
    .story-text h3 {
        font-size: 1.5rem;
    }
    
    .story-text p {
        font-size: 1rem;
    }
}

.mission-content h2 {
    font-size: 2.5rem;
    color: #0057B7;
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.mission-highlight {
    background: #f0f7ff;
    padding: 1.5rem;
    border-left: 4px solid #0057B7;
    margin: 2rem 0;
    border-radius: 5px;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: #0057B7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mission-image {
    border-radius: 20px;
    height: 450px;
    overflow: hidden;
    padding: 0;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
}

/* Featured Projects */
.featured-projects {
    background: var(--bg-alt);
    padding: var(--space-16) 0; /* 64px - standard section */
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #0057B7;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.projects-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 1.5rem;
}

.project-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg); /* 12px */
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

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

.project-image {
    height: 200px;
    overflow: hidden;
}

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

.project-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    font-size: 1.4rem;
    color: #0057B7;
    margin-bottom: 1rem;
}

.project-content p {
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.project-need {
    background: #fff3cd;
    padding: 0.75rem;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #856404;
}

.progress-bar {
    background: #e0e0e0;
    border-radius: 10px;
    height: 10px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress-fill {
    background: var(--success, #28A745);
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s;
}

.progress-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.project-btn {
    display: inline-block;
    background: #0057B7;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

.project-btn:hover {
    background: var(--gold-primary, #FFD700);
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.view-all-projects {
    text-align: center;
    margin-top: 3rem;
}

.view-all-projects a {
    display: inline-block;
    color: #0057B7;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid #0057B7;
    border-radius: 5px;
    transition: all 0.3s;
}

.view-all-projects a:hover {
    background: #0057B7;
    color: white;
}

/* Donation Impact */
.donation-impact {
    background: white;
    padding: 5rem 2rem;
}

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

.impact-content h2 {
    font-size: 2.5rem;
    color: #0057B7;
    margin-bottom: 2rem;
}

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

.impact-example {
    padding: 2rem;
    background: var(--warm-gray);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.impact-example:hover {
    background: var(--warm-cream);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.impact-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 1rem;
}

.impact-description {
    color: #555;
    font-size: 1.05rem;
}

/* Community Stories */
.community-stories {
    padding: 5rem 2rem;
    background: white;
    overflow: hidden;
}

.stories-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.stories-carousel {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    padding: 1rem 0;
}

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
}

.story-card.active {
    flex: 0 0 700px;
    opacity: 1;
}

.story-card.preview {
    flex: 0 0 300px;
    opacity: 0.6;
    cursor: pointer;
}

.story-card.preview:hover {
    opacity: 0.8;
    transform: translateY(-5px);
}

.story-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-initial {
    width: 50px;
    height: 50px;
    background: #0057B7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
}

.story-card.preview .author-initial {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
}

.author-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
}

.story-card.preview .author-name {
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.9rem;
    color: #666;
}

.story-card.preview .author-role {
    font-size: 0.8rem;
}

.story-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-card.preview .story-image {
    height: 350px;
}

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

.story-content {
    padding: 2rem;
    line-height: 1.8;
    flex-grow: 1;
    overflow: hidden;
}

.story-card.preview .story-content {
    padding: 1.5rem;
    max-height: 150px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.story-content p {
    margin-bottom: 1rem;
    color: #444;
}

.story-footer {
    padding: 1rem 1.5rem;
    background: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.story-meta {
    color: #666;
    font-size: 0.9rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #0057B7;
    color: #0057B7;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s;
    z-index: 10;
    user-select: none;
}

.carousel-nav:hover {
    background: #0057B7;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-nav.disabled:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #0057B7;
    transform: translateY(-50%);
}

.carousel-nav-prev {
    left: -25px;
}

.carousel-nav-next {
    right: -25px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicator.active {
    background: #0057B7;
    width: 30px;
    border-radius: 6px;
}

/* How to Help */
.how-to-help {
    padding: var(--space-16) 0; /* 64px - standard section */
    background: linear-gradient(135deg, var(--warm-cream) 0%, #fff 100%);
}

.help-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6); /* 24px horizontal */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-8); /* 32px */
}

.help-card {
    text-align: center;
    padding: var(--space-8) var(--space-6); /* 32px 24px */
    background: var(--bg-white);
    border-radius: var(--radius-lg); /* 12px */
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.help-card:hover {
    background: #0057B7;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

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

.help-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.help-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.help-card .btn-primary {
    background: var(--blue-primary, #0057B7);
    color: white;
    transition: all 0.3s ease;
}

.help-card .btn-primary:hover {
    background: var(--gold-primary, #FFD700);
    color: var(--text-dark, #333);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* ===========================================
   Community-Focused Sections
   =========================================== */

/* Community Section Title */
.community-section-title {
    text-align: center;
    font-family: 'Caveat', cursive;
    font-size: 2.2rem;
    color: var(--blue-primary);
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

/* Stats Ticker Label */
.ticker-label {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

/* Stats Ticker - Scrolling */
.stats-ticker {
    background: linear-gradient(135deg, var(--blue-primary) 0%, #004494 100%);
    padding: 1rem 0;
    overflow: hidden;
    border-radius: 12px;
    margin: 0 auto 2rem;
    max-width: 900px;
}

.stats-ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 20s linear infinite;
}

.stats-ticker-track:hover {
    animation-play-state: paused;
}

.stats-ticker-content {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
}

.stats-ticker-item {
    color: white;
    font-size: 1.05rem;
    padding: 0 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.stats-ticker-item strong {
    color: var(--gold-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0.25rem;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .community-section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .stats-ticker {
        margin: 0 1rem 1.5rem;
        border-radius: 8px;
    }
    
    .stats-ticker-item {
        font-size: 0.95rem;
        padding: 0 1.5rem;
    }
    
    .stats-ticker-item strong {
        font-size: 1.2rem;
    }
}

/* Legacy Activity Ticker (keeping for reference) */
.activity-ticker {
    background: linear-gradient(135deg, var(--warm-cream) 0%, #fff 100%);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem auto;
    max-width: 800px;
    border: 1px solid rgba(0,87,183,0.1);
}

.activity-ticker h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: var(--blue-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.ticker-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.05);
}

.ticker-item .emoji {
    font-size: 1.2rem;
}

.ticker-item .number {
    font-weight: 700;
    color: var(--blue-primary);
}

/* Volunteer Spotlight / Faces of Undaunted */
.volunteer-spotlight {
    background: var(--warm-gray);
    padding: 4rem 2rem;
}

.volunteer-spotlight h2 {
    text-align: center;
    color: var(--blue-primary);
    margin-bottom: 0.5rem;
}

.volunteer-spotlight .section-subtitle {
    text-align: center;
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.volunteer-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.volunteer-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--warm-cream);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.volunteer-card blockquote {
    font-style: italic;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 1rem;
}

.volunteer-card blockquote::before {
    content: '"';
    font-family: 'Caveat', cursive;
    font-size: 4rem;
    color: var(--gold-primary);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.5;
}

.volunteer-name {
    font-weight: 700;
    color: var(--blue-primary);
    font-size: 1.1rem;
}

.volunteer-role {
    font-family: 'Caveat', cursive;
    color: var(--warm-terracotta);
    font-size: 1.2rem;
}

/* Personal trust banner */
.trust-personal {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
    border: 2px dashed var(--gold-primary);
}

.trust-personal h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.6rem;
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

.trust-personal ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.trust-personal li {
    padding: 0.5rem 0;
    color: #555;
}

.trust-personal li::before {
    content: '✓ ';
    color: var(--blue-primary);
    font-weight: bold;
}

/* ===========================================
   Community Feed - Expandable Story Cards
   =========================================== */

.community-feed-section {
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--warm-gray) 100%);
    padding: var(--space-16) 0; /* 64px - standard section */
}

.community-feed-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-6); /* 24px horizontal */
}

.community-feed-header {
    text-align: center;
    margin-bottom: 2rem;
}

.community-feed-header h3 {
    font-family: 'Caveat', cursive;
    font-size: 2.2rem;
    color: var(--blue-primary);
    margin-bottom: 1.5rem;
}

/* Quick Stats Row */
.quick-stats-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--warm-cream);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.quick-stat .stat-emoji {
    font-size: 1.1rem;
}

.quick-stat .stat-number {
    font-weight: 700;
    color: var(--blue-primary);
}

.quick-stat .stat-text {
    color: #666;
}

/* Story Cards Grid */
.story-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Individual Story Card */
.story-cards-grid .story-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.story-cards-grid .story-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.story-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.story-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.story-card:hover .story-card-image img {
    transform: scale(1.05);
}

/* Stat Badge on Image */
.story-stat-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

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

.badge-count {
    font-weight: 700;
    color: var(--blue-primary);
}

.badge-label {
    color: #666;
}

/* Story Card Content */
.story-card-content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.story-date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.story-title {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.story-preview {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
}

.story-full-text {
    display: none;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.story-card.expanded .story-preview {
    display: none;
}

.story-card.expanded .story-full-text {
    display: block;
}

/* Story Card Actions */
.story-card-actions {
    margin-top: auto;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.expand-btn {
    background: none;
    border: none;
    color: var(--blue-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.4rem 0;
    transition: color 0.2s;
}

.expand-btn:hover {
    color: var(--blue-dark);
    text-decoration: underline;
}

.fb-link {
    font-size: 0.85rem;
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.fb-link:hover {
    color: #1877f2;
}

/* Community Feed Footer - Follow CTA */
.community-feed-footer {
    text-align: center;
    padding: 2rem;
    background: var(--warm-cream);
    border-radius: 16px;
    margin-top: 1rem;
}

.follow-cta {
    margin-bottom: 1rem;
}

.follow-cta p {
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 0.75rem;
}

.fb-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1877f2;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.fb-follow-btn:hover {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.fb-follow-btn svg {
    width: 20px;
    height: 20px;
}

.see-more-link {
    display: inline-block;
    color: var(--blue-primary);
    text-decoration: none;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    transition: color 0.2s;
}

.see-more-link:hover {
    color: var(--blue-dark);
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .community-feed-container {
        padding: 2rem 1rem;
    }

    .community-feed-header h3 {
        font-size: 1.8rem;
    }

    .quick-stats-row {
        gap: 0.75rem;
    }

    .quick-stat {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    .story-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .story-card-image {
        height: 160px;
    }

    .community-feed-footer {
        padding: 1.5rem 1rem;
    }
}

/* Softer card styles globally */
.project-card,
.story-card {
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover,
.story-card:hover {
    box-shadow: var(--shadow-hover);
}

@media (max-width: 768px) {
    .activity-ticker {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .ticker-items {
        flex-direction: column;
        align-items: stretch;
    }
    
    .ticker-item {
        justify-content: center;
    }
    
    .volunteer-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .volunteer-spotlight {
        padding: 3rem 1rem;
    }
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 2rem 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #FFD700;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FFD700;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #0057B7;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .story-card.preview {
        flex: 0 0 200px;
    }
    
    .story-card.active {
        flex: 0 0 600px;
    }
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 2rem 2rem;
        gap: 0;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        display: flex;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        border-bottom: 1px solid #eee;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-actions .lang-switch {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
    
    .nav-actions .donate-btn-nav {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .mobile-overlay.active {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .mission {
        grid-template-columns: 1fr;
    }
    
    .mission-image {
        height: 300px;
    }
    
    .projects-grid,
    .help-grid,
    .impact-examples {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .story-card.active,
    .story-card.preview {
        flex: 0 0 calc(100vw - 4rem);
    }
    
    .story-card.preview {
        display: none;
    }
    
    .story-image {
        height: auto;
        aspect-ratio: 4 / 3;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
    }
    
    .carousel-nav-prev {
        left: 10px;
    }
    
    .carousel-nav-next {
        right: 10px;
    }

    /* Mobile alignment refinements */
    .stories-carousel {
        flex-direction: column;
        align-items: stretch;
    }

    .story-card {
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
    }

    .story-card.active {
        flex: 1 0 auto;
    }

    .mission-image {
        height: 260px;
    }

    .impact-content,
    .section-header {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* ===========================================
   Partners Section
   Shared styles for #partners-en and #partners-ua
   =========================================== */

.partners-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.partners-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.partners-section .section-header h2 {
    font-size: 2.5rem;
    color: #0057B7;
    margin-bottom: 1rem;
}

.partners-section .section-header p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
}

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

.partner-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.partner-card-header {
    background: linear-gradient(135deg, #0057B7 0%, #4A90E2 100%);
    color: white;
    padding: 1.5rem 2rem;
}

.partner-card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.partner-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    font-size: 0.9rem;
    opacity: 0.95;
}

.partner-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.partner-meta .meta-icon {
    font-size: 1rem;
}

.partner-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.partner-description {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.partner-collaboration {
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.partner-collaboration h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0057B7;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.partner-collaboration p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

.partner-quote {
    background: #f0f7ff;
    border-left: 4px solid #FFD700;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.partner-quote p {
    color: #0057B7;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.partner-card-footer {
    padding: 0 2rem 2rem;
    margin-top: auto;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0057B7;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #0057B7;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.partner-link:hover {
    background: #0057B7;
    color: white;
}

.partner-link .link-icon {
    transition: transform 0.3s ease;
}

.partner-link:hover .link-icon {
    transform: translateX(3px);
}

/* Partners Section Responsive */
@media (max-width: 768px) {
    .partners-section {
        padding: 3rem 1.5rem;
    }

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

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partner-card-header {
        padding: 1.25rem 1.5rem;
    }

    .partner-card-header h3 {
        font-size: 1.15rem;
    }

    .partner-meta {
        flex-direction: column;
        gap: 0.4rem;
    }

    .partner-card-body {
        padding: 1.5rem;
    }

    .partner-card-footer {
        padding: 0 1.5rem 1.5rem;
    }
}

/* ===========================================
   About Us Page Styles
   =========================================== */

/* About Container */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, rgba(0,87,183,0.95), rgba(0,87,183,0.85));
    color: white;
    padding: 6rem 2rem 4rem;
    text-align: center;
}

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

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.about-hero-tagline {
    font-size: 1.5rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

.about-quick-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.quick-stat {
    background: rgba(255,255,255,0.15);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    min-width: 140px;
    backdrop-filter: blur(5px);
}

.quick-stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFD700;
}

.quick-stat-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* About Story / Timeline Section */
.about-story {
    padding: 5rem 2rem;
    background: white;
}

.about-story h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0057B7;
    margin-bottom: 3rem;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #0057B7, #FFD700);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

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

.timeline-year {
    flex: 0 0 120px;
    font-size: 2rem;
    font-weight: bold;
    color: #0057B7;
    text-align: center;
    background: white;
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
    margin: 0 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #0057B7;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.timeline-detail {
    font-size: 0.95rem;
    color: #666;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

/* Mission & Values Section */
.about-mission-values {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

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

.mission-box, .vision-box {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.mission-box {
    border-left: 5px solid #0057B7;
}

.vision-box {
    border-left: 5px solid #FFD700;
}

.mission-box h2, .vision-box h2 {
    font-size: 2rem;
    color: #0057B7;
    margin-bottom: 1.5rem;
}

.mission-statement, .vision-statement {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

.values-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #0057B7;
    margin-bottom: 3rem;
}

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

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

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

.value-card h3 {
    font-size: 1.3rem;
    color: #0057B7;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.value-ukr {
    font-size: 0.9rem;
    font-weight: normal;
    color: #666;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

/* About Programs Section */
.about-programs {
    padding: 5rem 2rem;
    background: white;
}

.about-programs h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0057B7;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.program-card {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.program-card:hover {
    border-color: #0057B7;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.program-card h3 {
    font-size: 1.3rem;
    color: #0057B7;
    margin-bottom: 1rem;
}

.program-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.program-target {
    font-size: 0.9rem;
    color: #666;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

/* Leadership Section */
.leadership {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.leadership h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0057B7;
    margin-bottom: 3rem;
}

.chairperson-video {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.chairperson-info {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.chairperson-info img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid #0057B7;
    box-shadow: 0 4px 15px rgba(0,87,183,0.2);
}

.chairperson-photo-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 5px solid #0057B7;
    color: #999;
    font-size: 0.9rem;
}

.chairperson-info h3 {
    font-size: 1.5rem;
    color: #0057B7;
    margin-bottom: 0.5rem;
}

.chairperson-info .role {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.chairperson-info .tenure {
    font-size: 0.9rem;
    color: #999;
}

.video-wrapper {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-bottom: 1rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.video-caption {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

.governance-structure {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    border-left: 5px solid #0057B7;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.governance-structure h3 {
    font-size: 1.8rem;
    color: #0057B7;
    margin-bottom: 2rem;
    text-align: center;
}

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

.governance-item {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
}

.governance-item strong {
    display: block;
    font-size: 1.2rem;
    color: #0057B7;
    margin-bottom: 0.5rem;
}

.governance-item p {
    color: #666;
    line-height: 1.6;
}

.founding-note {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* Legal Section */
.about-legal {
    padding: 5rem 2rem;
    background: white;
}

.about-legal h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0057B7;
    margin-bottom: 1rem;
}

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

.legal-card {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 15px;
}

.legal-card h3 {
    font-size: 1.5rem;
    color: #0057B7;
    margin-bottom: 1.5rem;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
}

.legal-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.legal-table th,
.legal-table td {
    padding: 1rem 0.5rem;
    text-align: left;
    vertical-align: top;
}

.legal-table th {
    font-weight: 600;
    color: #333;
    width: 40%;
}

.legal-table td {
    color: #555;
}

.copy-value {
    font-family: monospace;
    font-size: 1.1rem;
    color: #0057B7;
    font-weight: 600;
}

.copy-btn-small {
    background: #0057B7;
    color: white;
    border: none;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    cursor: pointer;
    margin-left: 1rem;
    transition: all 0.3s;
}

.copy-btn-small:hover {
    background: #004494;
}

.legal-list {
    list-style: none;
}

.legal-list li {
    padding: 0.75rem 0;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
}

.legal-list li:last-child {
    border-bottom: none;
}

/* About Impact Section */
.about-impact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0057B7 0%, #4A90E2 100%);
    color: white;
}

.about-impact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-impact .section-intro {
    color: rgba(255,255,255,0.9);
}

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

.impact-stat {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.impact-stat:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.impact-stat.highlight {
    background: #FFD700;
    color: #333;
}

.impact-stat.highlight .impact-number {
    color: #0057B7;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.impact-stat:not(.highlight) .impact-number {
    color: #FFD700;
}

.impact-label {
    font-size: 1rem;
    opacity: 0.95;
}

/* About CTA Section */
.about-cta {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.about-cta h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0057B7;
    margin-bottom: 1rem;
}

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

.cta-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: block;
}

.cta-card:hover {
    background: #0057B7;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.cta-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.cta-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About Contact Section */
.about-contact {
    padding: 5rem 2rem;
    background: white;
}

.about-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0057B7;
    margin-bottom: 3rem;
}

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

.contact-card {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 15px;
}

.contact-card h3 {
    font-size: 1.2rem;
    color: #0057B7;
    margin-bottom: 1rem;
}

.contact-card a {
    color: #0057B7;
    text-decoration: none;
    font-size: 1.05rem;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card p {
    color: #555;
}

/* Active Nav Link */
.nav-links a.active {
    color: #0057B7;
    font-weight: 700;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .chairperson-video {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chairperson-info {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-hero-tagline {
        font-size: 1.2rem;
    }
    
    .about-quick-stats {
        gap: 1rem;
    }
    
    .quick-stat {
        min-width: 120px;
        padding: 0.75rem 1rem;
    }
    
    .quick-stat-value {
        font-size: 1.5rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-year {
        text-align: left;
        padding-left: 50px;
    }
    
    .timeline-content {
        margin: 1rem 0 1rem 50px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-box, .vision-box {
        padding: 2rem;
    }
    
    .values-grid,
    .programs-grid,
    .governance-grid,
    .impact-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-table th,
    .legal-table td {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
    }
    
    .legal-table th {
        padding-top: 1rem;
        border-bottom: none;
    }
    
    .governance-structure {
        padding: 2rem 1.5rem;
    }
    
    .about-story h2,
    .values-heading,
    .about-programs h2,
    .leadership h2,
    .about-legal h2,
    .about-impact h2,
    .about-cta h2,
    .about-contact h2 {
        font-size: 2rem;
    }
    
    .chairperson-photo-placeholder,
    .chairperson-info img {
        width: 150px;
        height: 150px;
    }
}
