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

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: #bd2b4a;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1c702e 0%, #bd2b4a 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-white {
    background: white;
    color: #1c702e;
}

.btn-white:hover {
    background: #f0f0f0;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #bd2b4a;
}

/* Our Mission */
.our-mission {
    padding: 80px 20px;
    background: #f9f9f9;
}

.our-mission h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.mission-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #666;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mission-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
}

/* Who We Serve */
.who-we-serve {
    padding: 80px 20px;
}

.who-we-serve h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #666;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.serve-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.serve-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.serve-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.serve-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.serve-card ul {
    list-style: none;
    padding: 0;
}

.serve-card li {
    color: #666;
    padding: 5px 0;
}

/* Footer */
.footer {
    background: #121828;
    color: white;
    padding: 40px 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #bd2b4a;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 5px 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1c702e 0%, #bd2b4a 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 60px 20px;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.content-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

/* MVV Section */
.mvv-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mvv-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mvv-card h3 {
    color: #bd2b4a;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.mvv-card ul {
    list-style: none;
    padding: 0;
}

.mvv-card li {
    padding: 5px 0;
    color: #666;
}

/* Leadership Section */
.leadership-section {
    padding: 60px 20px;
}

.leadership-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.leader-profile {
    margin: 40px 0;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
}

.leader-info h3 {
    color: #bd2b4a;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.leader-title {
    color: #1c702e;
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-info blockquote {
    font-style: italic;
    color: #666;
    border-left: 4px solid #bd2b4a;
    padding-left: 20px;
    margin: 20px 0;
}

.leader-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Status Section */
.status-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.status-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

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

.status-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.status-card.complete .status-icon {
    color: #1c702e;
}

.status-card.in-progress .status-icon {
    color: #de6e2f;
}

.status-card.pending .status-icon {
    color: #bd2b4a;
}

.status-card h4 {
    margin-bottom: 10px;
    color: #333;
}

.status-card p {
    color: #666;
    font-size: 0.9rem;
}

.help-needed {
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 40px;
    background: white;
    border-radius: 10px;
}

.help-needed h3 {
    color: #bd2b4a;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.help-needed p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.btn-primary {
    background: #1c702e;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #155a24;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid #333;
    color: #333;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    background: #333;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .serve-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .help-buttons {
        flex-direction: column;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

/* Program Detail Sections */
.program-detail {
    padding: 60px 20px;
}

.program-detail.alt-bg {
    background: #f9f9f9;
}

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

.program-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
}

.program-header h2 {
    font-size: 2rem;
    color: #bd2b4a;
    margin-bottom: 15px;
}

.program-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.program-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    color: #666;
    padding: 5px 0;
    font-size: 0.95rem;
}

.status-note {
    background: #fff9e6;
    border-left: 4px solid #de6e2f;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 5px;
}

/* Outcomes Section */
.outcomes-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.outcomes-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.outcome-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.outcome-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.outcome-card h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.outcome-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Programs */
.cta-programs {
    background: linear-gradient(135deg, #1c702e 0%, #bd2b4a 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-programs h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-programs p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

@media (max-width: 968px) {
    .program-services {
        grid-template-columns: 1fr;
    }
    
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
}

/* Get Involved Sections */
.ways-to-help {
    padding: 60px 20px;
}

.ways-to-help h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.help-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.help-card:hover {
    transform: translateY(-5px);
}

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

.help-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.help-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-btn {
    color: #bd2b4a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.card-btn:hover {
    color: #1c702e;
}

/* Donate Section */
.donate-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.donate-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.impact-levels {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.impact-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.impact-card.featured {
    border: 2px solid #1c702e;
}

.amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1c702e;
    margin-bottom: 10px;
}

.impact-card h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.impact-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.tax-notice {
    background: #fff9e6;
    border-left: 4px solid #de6e2f;
    padding: 25px;
    margin: 40px 0;
    border-radius: 5px;
}

.tax-notice h4 {
    color: #333;
    margin-bottom: 10px;
}

.tax-notice p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.donate-cta, .volunteer-cta, .partner-cta {
    text-align: center;
    margin: 40px 0;
    padding: 40px;
    background: white;
    border-radius: 10px;
}

.donate-cta h3, .volunteer-cta h3, .partner-cta h3 {
    color: #bd2b4a;
    margin-bottom: 15px;
}

.donate-cta p, .volunteer-cta p, .partner-cta p {
    color: #666;
    margin-bottom: 25px;
}

.donate-buttons, .volunteer-buttons, .partner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Volunteer Section */
.volunteer-section {
    padding: 60px 20px;
}

.volunteer-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.volunteer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.volunteer-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.volunteer-card h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.volunteer-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.time-badge {
    display: inline-block;
    background: #1c702e;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Partner Section */
.partner-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.partner-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.partner-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h4 {
    color: #333;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.partnership-levels {
    margin: 60px 0 40px;
}

.partnership-levels h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.level-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.level-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.level-badge.transformational {
    background: #ffd700;
    color: #333;
}

.level-badge.impact {
    background: #1c702e;
    color: white;
}

.level-badge.community {
    background: #de6e2f;
    color: white;
}

.level-badge.supporting {
    background: #bd2b4a;
    color: white;
}

.level-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.level-card h4 {
    color: #333;
    margin-bottom: 15px;
}

.level-card p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-levels {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .levels-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-levels {
        grid-template-columns: 1fr;
    }
    
    .volunteer-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-benefits {
        grid-template-columns: 1fr;
    }
    
    .donate-buttons, .volunteer-buttons, .partner-buttons {
        flex-direction: column;
    }
}

/* Impact Page Styles */
.crisis-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 40px 0;
}

.crisis-stat {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-big {
    font-size: 3.5rem;
    font-weight: 700;
    color: #bd2b4a;
    margin-bottom: 15px;
}

.crisis-stat p {
    color: #666;
    line-height: 1.6;
}

.progress-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.progress-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.progress-timeline {
    max-width: 900px;
    margin: 40px auto;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
}

.timeline-item.complete {
    border-left: 4px solid #1c702e;
}

.timeline-item.in-progress {
    border-left: 4px solid #de6e2f;
}

.timeline-item.pending {
    border-left: 4px solid #bd2b4a;
}

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

.timeline-item h4 {
    color: #333;
    margin-bottom: 5px;
}

.timeline-item p {
    color: #666;
}

.community-section {
    padding: 60px 20px;
}

.community-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.engagement-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.engagement-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.engagement-card h3 {
    color: #bd2b4a;
    margin-bottom: 15px;
}

.engagement-card p {
    color: #666;
    line-height: 1.7;
}

.expected-impact {
    padding: 60px 20px;
    background: #f9f9f9;
}

.expected-impact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.impact-goals {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.goal-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.goal-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.goal-card h3 {
    color: #333;
    margin-bottom: 10px;
}

.goal-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.help-launch {
    background: linear-gradient(135deg, #1c702e 0%, #bd2b4a 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.help-launch h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.help-launch p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

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

/* Resources Page */
.help-notice {
    background: #e6f7ff;
    border-left: 4px solid #1c702e;
    padding: 25px;
    margin: 30px 0;
    border-radius: 5px;
}

.help-notice h3 {
    color: #333;
    margin-bottom: 15px;
}

.help-notice p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.resources-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.resources-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.resource-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.resource-card h3 {
    color: #bd2b4a;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.resource-list li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.national-resources {
    padding: 60px 20px;
}

.national-resources h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.national-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.national-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.national-card h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1rem;
}

.national-card p {
    color: #1c702e;
    font-weight: 700;
    font-size: 1.1rem;
}

.contact-cta {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-cta p {
    color: #666;
    margin-bottom: 30px;
}

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

/* News Page */
.news-section {
    padding: 60px 20px;
}

.news-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.news-grid {
    display: grid;
    gap: 30px;
}

.news-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.news-card.featured {
    border: 2px solid #1c702e;
}

.news-badge {
    display: inline-block;
    background: #1c702e;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.news-date {
    display: block;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.news-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.news-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.news-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.highlight {
    background: #e6f7ff;
    color: #1c702e;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.stay-connected {
    padding: 60px 20px;
    background: #f9f9f9;
}

.stay-connected h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.social-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.social-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
}

.social-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.social-card p {
    color: #666;
    margin-bottom: 25px;
}

.newsletter-signup {
    max-width: 600px;
    margin: 60px auto 0;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.newsletter-signup h3 {
    color: #bd2b4a;
    margin-bottom: 15px;
}

.newsletter-signup p {
    color: #666;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #1c702e;
}

.form-note {
    font-size: 0.85rem;
    color: #888;
}

.upcoming-events {
    padding: 60px 20px;
}

.upcoming-events h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.events-notice {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.events-notice h3 {
    color: #333;
    margin-bottom: 20px;
}

.events-notice p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

@media (max-width: 968px) {
    .crisis-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .engagement-cards {
        grid-template-columns: 1fr;
    }
    
    .impact-goals {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
    }
    
    .national-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .launch-buttons, .contact-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .impact-goals {
        grid-template-columns: 1fr;
    }
    
    .national-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}