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

:root {
    --primary-green: #2D8B47;
    --light-green: #4CAF50;
    --dark-green: #1B5E20;
    --primary-gold: #FFD700;
    --light-gold: #FFF176;
    --dark-gold: #F57F17;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --black: #1a1a1a;
    --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--light-green));
    --gradient-gold: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-hero: 0 30px 60px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    background: var(--white);
}

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

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

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

.nav-logo {
    display: flex;
    flex-direction: column;
}

.nav-logo h2 {
    color: var(--primary-green);
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: -5px;
}

.tagline {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-green);
}

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

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

.connect-btn {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

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

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    flex-direction: column;
    padding: 20px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--dark-gray);
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
    font-weight: 600;
}

.mobile-menu .connect-btn {
    margin-top: 15px;
    text-align: center;
    border-bottom: none;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(45, 139, 71, 0.1), rgba(255, 215, 0, 0.1));
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 80px;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero-title {
    margin-bottom: 30px;
}

.title-main {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--white), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.title-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.9;
    color: var(--white);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Update Section Styles */
.update-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 20px 80px;
    position: relative;
    z-index: 2;
    color: var(--white);
}

.update-header {
    text-align: center;
    margin-bottom: 50px;
}

.update-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--white), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.update-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0.9;
    color: var(--white);
}

.update-message {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-large);
}

.update-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--white);
}

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

.update-message strong {
    color: var(--primary-gold);
    font-weight: 700;
}

.funding-breakdown {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.funding-breakdown h3 {
    color: var(--primary-gold);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.breakdown-item .amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-gold);
    min-width: 80px;
}

.breakdown-item .description {
    flex: 1;
    margin-left: 20px;
    font-weight: 500;
}

.breakdown-note {
    font-size: 0.95rem;
    opacity: 0.8;
    font-style: italic;
    margin-top: 15px;
    text-align: center;
    color: var(--white);
}

.contact-info {
    background: rgba(255, 215, 0, 0.15);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.contact-info a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
}

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

.empower-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    color: var(--dark-gray) !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-large);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.empower-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-hero);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.cta-secondary:hover .btn-arrow {
    transform: translateX(5px);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-hero);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: scale(1.02);
}

.lucca-photo {
    width: 100%;
    height: 500px;
    background: var(--gradient-primary);
    position: relative;
}

.lucca-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.lucca-image:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
}

.badge-text {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

.vision-statement {
    position: relative;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 20px;
    border-left: 5px solid var(--primary-gold);
}

.quote-mark {
    font-size: 4rem;
    color: var(--primary-gold);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
}

.vision-statement blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.quote-attribution {
    text-align: right;
}

.quote-attribution strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.quote-attribution span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.vision-pillars {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pillar {
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-green);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.pillar h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.pillar p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Leadership Section */
.leadership {
    padding: 120px 0;
    background: var(--light-gray);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 80px;
}

.leadership-trait {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.leadership-trait:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-gold);
}

.trait-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: block;
    filter: grayscale(0.3);
}

.leadership-trait:hover .trait-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.leadership-trait h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.leadership-trait p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.leadership-testimonial {
    background: var(--gradient-primary);
    padding: 60px;
    border-radius: 25px;
    text-align: center;
    color: var(--white);
}

.testimonial-content p {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Project Section */
.project {
    padding: 120px 0;
    background: var(--white);
}

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

.project-description h3 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    font-weight: 700;
}

.project-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.project-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.feature {
    padding: 25px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
    background: rgba(45, 139, 71, 0.05);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.feature h4 {
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* Impact Section */
.impact {
    padding: 120px 0;
    background: var(--light-gray);
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.metric {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.metric-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 15px;
    display: block;
}

.metric-label {
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-weight: 700;
}

.metric-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.impact-stories h3 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 50px;
    font-weight: 700;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.story {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.story-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.story h4 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.story p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Connect Section */
.connect {
    padding: 120px 0;
    background: var(--gradient-primary);
    color: var(--white);
}

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

.connect-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.connect-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.option-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.support-option h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.support-option p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.action-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.action-card p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-hero);
    margin-bottom: 30px;
}

.support-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.funding-progress {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.progress-fill {
    height: 100%;
    background: var(--gradient-gold);
    width: 25%;
    border-radius: 4px;
    transition: width 2s ease;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.footer-info h3 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-weight: 800;
}

.footer-info p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.footer-project p {
    color: var(--medium-gray);
    text-align: right;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 100px 20px 60px;
    }

    .hero-image {
        order: -1;
    }

    .title-main {
        font-size: 3rem;
    }

    .title-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: none;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    .image-container {
        max-width: 300px;
        margin: 0 auto;
    }

    .lucca-photo {
        height: 400px;
    }

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

    .section-header p {
        font-size: 1rem;
    }

    .vision-content,
    .project-overview,
    .connect-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .leadership-grid,
    .impact-metrics,
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .project-features {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-project p {
        text-align: center;
    }

    /* Update content responsive styles */
    .update-content {
        padding: 100px 20px 60px;
    }

    .update-header h1 {
        font-size: 2.8rem;
    }

    .update-subtitle {
        font-size: 1.1rem;
    }

    .update-message {
        padding: 30px 25px;
    }

    .funding-breakdown {
        padding: 25px 20px;
    }

    .breakdown-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 20px 0;
    }

    .breakdown-item .description {
        margin-left: 0;
    }

    .contact-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .vision-statement {
        padding: 25px;
    }

    .vision-statement blockquote {
        font-size: 1.1rem;
    }

    .leadership-trait,
    .metric,
    .story {
        padding: 25px 20px;
    }

    .connect-text h2 {
        font-size: 2.2rem;
    }

    .action-card {
        padding: 25px;
    }

    .container {
        padding: 0 15px;
    }

    /* Update content responsive styles for small mobile */
    .update-header h1 {
        font-size: 2.2rem;
    }

    .update-message {
        padding: 25px 20px;
    }

    .update-message p {
        font-size: 1rem;
    }

    .funding-breakdown {
        padding: 20px 15px;
    }

    .breakdown-item .amount {
        font-size: 1.1rem;
    }

    .contact-info {
        padding: 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content > * {
    animation: slideInLeft 0.8s ease-out;
}

.hero-image {
    animation: slideInRight 0.8s ease-out;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .leadership-trait:hover,
    .pillar:hover,
    .story:hover,
    .metric:hover {
        transform: none;
    }

    .leadership-trait:active,
    .pillar:active,
    .story:active,
    .metric:active {
        transform: scale(0.98);
    }
}