.impact-report {
    padding: 50px;
    background-color: #ffffff;
    max-width: 1100px;
    margin: 30px auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.impact-header { text-align: center; margin-bottom: 40px; }
.impact-header h1 { color: #1e2e3f; font-size: 2.2rem; }

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.impact-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eee;
}

.big-number {
    font-size: 3rem;
    font-weight: 800;
    color: #27ae60;
    margin: 10px 0;
}
.progress-bar {
    background: #e0e0e0;
    height: 10px;
    border-radius: 5px;
    margin: 15px 0 5px;
    overflow: hidden;
}

.fill {
    background: #27ae60;
    height: 100%;
    transition: width 1s ease-in-out;
}

.impact-story {
    margin-top: 50px;
    padding: 30px;
    background: #1e2e3f;
    color: white;
    border-radius: 15px;
    text-align: center;
}

.impact-story blockquote {
    font-style: italic;
    font-size: 1.2rem;
}