.impact-header {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 5rem 0;
    text-align: center;
    color: #fff;
}

.impact-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.stats-section {
    padding: 5rem 0;
    background: #f5f7fa;
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #64748b;
    font-size: 0.9rem;
}

.impact-stories {
    padding: 5rem 0;
}

.impact-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.story-image {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.story-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.story-card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-impact {
    padding: 1rem;
    background: #f5f7fa;
    border-radius: 10px;
    color: #10b981;
}

@media (max-width: 768px) {
    .impact-header h1 {
        font-size: 2.5rem;
    }
}

