.impact {

    background: #f7f7f7;

}

.impact-banner {

    background: linear-gradient(
        135deg,
        #1d3b20,
        #2c5a32
    );

    color: white;

    text-align: center;

    padding: 80px 50px;

    border-radius: 30px;

    margin-bottom: 80px;

}

.impact-banner h2 {

    color: white;

    font-size: 3rem;

    margin-bottom: 20px;

}

.impact-banner p {

    font-size: 1.15rem;

    max-width: 700px;

    margin: 0 auto 30px;

}

.impact-button {

    display: inline-block;

    background: #f8c537;

    color: #1d3b20;

    padding: 16px 30px;

    border-radius: 999px;

    font-weight: 700;

}

.stats-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.stat-item {

    background: white;

    padding: 40px 20px;

    text-align: center;

    border-radius: 24px;

    box-shadow: 0 15px 40px rgba(0,0,0,.08);

}

.stat-icon {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(29,59,32,.08);
    color: var(--dark-green);
    margin-bottom: 16px;

}

.stat-number {

    font-size: 3rem;

    font-weight: 800;

    color: var(--dark-green);

    margin-bottom: 10px;

    line-height: 1.1;

}

.stat-label {

    color: #666;

}