:root {
    /* Colors (HSL format) */
    --background: hsl(0, 0%, 98%);
    --foreground: hsl(210, 40%, 8%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(210, 40%, 8%);
    --primary: hsl(210, 100%, 45%);
    --primary-foreground: hsl(0, 0%, 98%);
    --primary-glow: hsl(210, 100%, 60%);
    --secondary: hsl(45, 100%, 65%);
    --secondary-foreground: hsl(210, 40%, 8%);
    --muted: hsl(210, 40%, 96%);
    --muted-foreground: hsl(210, 20%, 65%);
    --accent: hsl(15, 100%, 60%);
    --accent-foreground: hsl(0, 0%, 98%);
    --border: hsl(210, 20%, 90%);
    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(210, 40%, 98%);
    --ring: hsl(210, 100%, 45%);
    
    /* Foundation specific colors */
    --foundation-blue: hsl(210, 100%, 45%);
    --foundation-orange: hsl(25, 100%, 55%);
    --foundation-green: hsl(145, 85%, 45%);
    --foundation-purple: hsl(260, 85%, 55%);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border radius */
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px hsla(210, 100%, 60%, 0.3);
    --shadow-elegant: 0 10px 30px -10px hsla(210, 100%, 45%, 0.2);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark mode variables */
@media (prefers-color-scheme: dark) {
    :root {
        --background: hsl(220, 25%, 8%);
        --foreground: hsl(210, 40%, 98%);
        --card: hsl(220, 25%, 10%);
        --card-foreground: hsl(210, 40%, 98%);
        --primary: hsl(210, 100%, 60%);
        --primary-foreground: hsl(220, 25%, 8%);
        --primary-glow: hsl(210, 100%, 70%);
        --secondary: hsl(45, 100%, 65%);
        --secondary-foreground: hsl(220, 25%, 8%);
        --muted: hsl(220, 20%, 15%);
        --muted-foreground: hsl(210, 20%, 65%);
        --accent: hsl(15, 100%, 60%);
        --accent-foreground: hsl(220, 25%, 8%);
        --border: hsl(220, 20%, 20%);
        --destructive: hsl(0, 62.8%, 50%);
        --destructive-foreground: hsl(210, 40%, 98%);
        --ring: hsl(210, 100%, 60%);
        
        /* Foundation specific colors - dark mode */
        --foundation-blue: hsl(210, 100%, 60%);
        --foundation-orange: hsl(25, 100%, 65%);
        --foundation-green: hsl(145, 85%, 55%);
        --foundation-purple: hsl(260, 85%, 65%);
    }
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

.w-full {
    width: 100%;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.text-primary {
    color: var(--primary);
}

/* Button Styles */
button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: hsl(210, 100%, 40%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
    background-color: hsl(45, 100%, 60%);
    transform: translateY(-1px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--accent-foreground);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-accent:hover {
    background-color: hsl(15, 100%, 55%);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border);
    font-size: 1rem;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    font-size: 1.125rem;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--primary);
}

.btn-white {
    background-color: white;
    color: var(--primary);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

 /* Navigation Styles */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #000000, #1a1a1a); /* black gradient */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 40px; /* adjust to your logo size */
    margin-right: 0.75rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    margin-left: 2.5rem;
    gap: 1rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

/* CTA Button only on desktop */
.nav-cta {
    display: none;
}

@media (min-width: 768px) {
    .nav-cta {
        display: block;
    }
}

/* Mobile Button */
.nav-mobile-btn {
    display: block;
}

@media (min-width: 768px) {
    .nav-mobile-btn {
        display: none;
    }
}

.mobile-menu-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--foreground);
}

/* Mobile Navigation */
.nav-mobile {
    display: none; /* hidden by default */
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 64px; /* just below nav bar */
    left: 0;
    width: 100%;
    padding: 1rem;
    z-index: 999;
}

.nav-mobile.show {
    display: flex; /* shown when active */
}

.nav-mobile-link {
    display: block;
    color: var(--muted-foreground);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-mobile-link:hover {
    color: var(--primary);
}


/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('./assets/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsla(210, 100%, 45%, 0.8), hsla(15, 100%, 60%, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    color: white;
}

@media (min-width: 640px) {
    .hero-content {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 0 2rem;
    }
}

.hero-text {
    max-width: 64rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    display: block;
    color: var(--secondary);
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 3rem;
    }
}

.hero-taglines {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .hero-taglines {
        flex-direction: row;
    }
}

.tagline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tagline i {
    color: var(--secondary);
}

.tagline-dot {
    display: none;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--secondary);
    border-radius: 50%;
}

@media (min-width: 768px) {
    .tagline-dot {
        display: block;
    }
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid white;
    border-radius: 1.25rem;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-dot {
    width: 0.25rem;
    height: 0.75rem;
    background-color: white;
    border-radius: 0.125rem;
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Section Styles */
.about-section,
.impact-section,
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--background);
}

.services-section,
.get-involved-section {
    padding: 5rem 0;
    background-color: var(--muted);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

/* About Section */
.about-content {
    display: grid;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.content-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.content-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    color: var(--accent);
}

.value-title {
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.value-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.mission-vision {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr 1fr;
    }
}

.mission-card,
.vision-card {
    background: linear-gradient(135deg, hsla(210, 100%, 45%, 0.05), hsla(15, 100%, 60%, 0.05));
    border: 1px solid hsla(210, 100%, 45%, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.vision-card {
    background: linear-gradient(135deg, hsla(15, 100%, 60%, 0.05), hsla(45, 100%, 65%, 0.05));
    border-color: hsla(15, 100%, 60%, 0.2);
}

.mission-header,
.vision-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.mission-header i,
.vision-header i {
    font-size: 2rem;
    margin-right: 0.75rem;
}

.mission-header i {
    color: var(--primary);
}

.vision-header i {
    color: var(--accent);
}

.mission-header h3,
.vision-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
}

.mission-card p,
.vision-card p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Services Section */
.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card.red-gradient {
    background: linear-gradient(135deg, hsla(0, 100%, 50%, 0.1), hsla(330, 100%, 50%, 0.1));
    border-color: hsla(0, 100%, 50%, 0.2);
}

.service-card.orange-gradient {
    background: linear-gradient(135deg, hsla(25, 100%, 50%, 0.1), hsla(0, 100%, 50%, 0.1));
    border-color: hsla(25, 100%, 50%, 0.2);
}

.service-card.green-gradient {
    background: linear-gradient(135deg, hsla(145, 85%, 45%, 0.1), hsla(160, 85%, 45%, 0.1));
    border-color: hsla(145, 85%, 45%, 0.2);
}

.service-card.yellow-gradient {
    background: linear-gradient(135deg, hsla(45, 100%, 50%, 0.1), hsla(25, 100%, 50%, 0.1));
    border-color: hsla(45, 100%, 50%, 0.2);
}

.service-card.purple-gradient {
    background: linear-gradient(135deg, hsla(260, 85%, 55%, 0.1), hsla(330, 85%, 55%, 0.1));
    border-color: hsla(260, 85%, 55%, 0.2);
}

.service-card.blue-gradient {
    background: linear-gradient(135deg, hsla(210, 100%, 50%, 0.1), hsla(190, 100%, 50%, 0.1));
    border-color: hsla(210, 100%, 50%, 0.2);
}

.service-card.teal-gradient {
    background: linear-gradient(135deg, hsla(180, 85%, 45%, 0.1), hsla(145, 85%, 45%, 0.1));
    border-color: hsla(180, 85%, 45%, 0.2);
}

.service-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--accent);
}

.service-title {
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.approach-section {
    background: linear-gradient(135deg, hsla(210, 100%, 45%, 0.1), hsla(15, 100%, 60%, 0.1));
    border-radius: var(--radius-xl);
    padding: 2rem;
}

@media (min-width: 768px) {
    .approach-section {
        padding: 3rem;
    }
}

.approach-content {
    text-align: center;
}

.approach-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.approach-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.approach-items {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .approach-items {
        grid-template-columns: repeat(3, 1fr);
    }
}

.approach-item {
    text-align: center;
}

.approach-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.approach-icon.primary-bg {
    background-color: var(--primary);
}

.approach-icon.accent-bg {
    background-color: var(--accent);
}

.approach-icon.secondary-bg {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.approach-item h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.approach-item p {
    color: var(--muted-foreground);
}

/* Impact Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .achievements-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.achievement-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.achievement-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.achievement-number {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.achievement-number.red { color: hsl(0, 84.2%, 60.2%); }
.achievement-number.blue { color: hsl(210, 100%, 50%); }
.achievement-number.green { color: hsl(145, 85%, 45%); }
.achievement-number.cyan { color: hsl(180, 85%, 45%); }
.achievement-number.purple { color: hsl(260, 85%, 55%); }
.achievement-number.orange { color: hsl(25, 100%, 55%); }

.achievement-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.impact-stories {
    margin-bottom: 5rem;
}

.impact-story {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .impact-story {
        grid-template-columns: 1fr 1fr;
    }
    
    .impact-story.reverse {
        direction: rtl;
    }
    
    .impact-story.reverse > * {
        direction: ltr;
    }
}

.story-image img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.story-content {
    background: linear-gradient(135deg, hsla(210, 100%, 45%, 0.05), hsla(15, 100%, 60%, 0.05));
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-badge {
    display: inline-block;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.story-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.story-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.impact-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    color: white;
}

@media (min-width: 768px) {
    .impact-cta {
        padding: 3rem;
    }
}

.impact-cta h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.impact-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Testimonials Section */
.testimonials-content {
    display: grid;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .testimonials-content {
        grid-template-columns: 1fr 1fr;
    }
}

.testimonial-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.testimonial-highlight {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-quote {
    background: linear-gradient(135deg, hsla(210, 100%, 45%, 0.05), hsla(15, 100%, 60%, 0.05));
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.highlight-quote blockquote {
    font-size: 1.25rem;
    color: var(--foreground);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 1rem;
}

.highlight-quote cite {
    color: var(--muted-foreground);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.trust-stat {
    padding: 1rem;
}

.trust-number {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.trust-stats .trust-stat:nth-child(1) .trust-number {
    color: var(--primary);
}

.trust-stats .trust-stat:nth-child(2) .trust-number {
    color: var(--accent);
}

.trust-stats .trust-stat:nth-child(3) .trust-number {
    color: var(--secondary);
}

.trust-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.rating i {
    color: hsl(45, 100%, 50%);
}

.testimonial-quote {
    font-size: 2rem;
    color: hsla(210, 100%, 45%, 0.3);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.author-name {
    font-weight: bold;
    color: var(--foreground);
}

.author-role {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.trust-indicators {
    background: linear-gradient(135deg, hsla(210, 100%, 45%, 0.1), hsla(15, 100%, 60%, 0.1));
    border-radius: var(--radius-xl);
    padding: 2rem;
}

@media (min-width: 768px) {
    .trust-indicators {
        padding: 3rem;
    }
}

.trust-header {
    text-align: center;
    margin-bottom: 2rem;
}

.trust-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.trust-header p {
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
}

.trust-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: white;
}

.trust-icon.primary-bg {
    background-color: hsla(210, 100%, 45%, 0.2);
    color: var(--primary);
}

.trust-icon.accent-bg {
    background-color: hsla(15, 100%, 60%, 0.2);
    color: var(--accent);
}

.trust-icon.secondary-bg {
    background-color: hsla(45, 100%, 65%, 0.2);
    color: var(--secondary);
}

.trust-item h4 {
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Get Involved Section */
.involvement-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .involvement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .involvement-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.involvement-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.involvement-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.involvement-card.green-gradient {
    background: linear-gradient(135deg, hsla(145, 85%, 45%, 0.1), hsla(160, 85%, 45%, 0.1));
    border-color: hsla(145, 85%, 45%, 0.2);
}

.involvement-card.blue-gradient {
    background: linear-gradient(135deg, hsla(210, 100%, 50%, 0.1), hsla(190, 100%, 50%, 0.1));
    border-color: hsla(210, 100%, 50%, 0.2);
}

.involvement-card.purple-gradient {
    background: linear-gradient(135deg, hsla(260, 85%, 55%, 0.1), hsla(330, 85%, 55%, 0.1));
    border-color: hsla(260, 85%, 55%, 0.2);
}

.involvement-card.orange-gradient {
    background: linear-gradient(135deg, hsla(25, 100%, 50%, 0.1), hsla(0, 100%, 50%, 0.1));
    border-color: hsla(25, 100%, 50%, 0.2);
}

.involvement-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.involvement-card:hover .involvement-icon {
    color: var(--accent);
}

.involvement-title {
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.involvement-card:hover .involvement-title {
    color: var(--primary);
}

.involvement-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.involvement-card button {
    transition: var(--transition);
}

.involvement-card:hover button {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.future-contact {
    display: grid;
    gap: 3rem;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .future-contact {
        grid-template-columns: 1fr 1fr;
    }
}

.future-plans h3 {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.plans-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.plan-number {
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-size: 0.875rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.plan-item p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.contact-form-card {
    background: linear-gradient(135deg, hsla(210, 100%, 45%, 0.05), hsla(15, 100%, 60%, 0.05));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.contact-form-card > p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--background);
    color: var(--foreground);
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(210, 100%, 45%, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-xl);
    padding: 2rem;
    color: white;
}

@media (min-width: 768px) {
    .contact-info {
        padding: 3rem;
    }
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-item h4 {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--card);
    border-top: 1px solid var(--border);
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.footer-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: hsla(210, 100%, 45%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.footer-title {
    font-weight: bold;
    color: var(--foreground);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links li {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact .contact-item i {
    color: var(--primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact .contact-item span {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
    }
}

.footer-bottom-content p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.footer-promise {
    background: linear-gradient(135deg, hsla(210, 100%, 45%, 0.05), hsla(15, 100%, 60%, 0.05));
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.footer-promise h4 {
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.footer-promise p {
    color: var(--muted-foreground);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-title {
        font-size: 1.5rem;
    }
    
    .story-title {
        font-size: 1.5rem;
    }
    
    .approach-title {
        font-size: 1.5rem;
    }
    
    .impact-cta h3 {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .nav-fixed,
    .scroll-indicator,
    .contact-form,
    .social-links {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-section {
        min-height: auto;
        page-break-after: always;
    }
    
    .section-title {
        font-size: 18pt;
        margin-bottom: 12pt;
    }
    
    .content-title {
        font-size: 14pt;
        margin-bottom: 8pt;
    }
}