.our-impact-section {
    font-family: 'Roboto', sans-serif;
}

.impact-header {
    text-align: center;
    padding: 80px 5% 40px;
    background-color: #fdfaf5;
}

.impact-title {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.impact-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: #555;
}

.stats-row {
    padding: 80px 5%;
    color: #fff;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

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

.stat-number-wrap {
    font-family: 'Roboto Slab', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.recent-work-row {
    padding: 80px 5%;
}

.recent-work-container {
    max-width: 1100px;
    margin: 0 auto;
}

.recent-work-title {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
}

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

.work-item {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #cc5500;
}

.work-bullet {
    font-size: 1.2rem;
}

.work-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-container, .work-grid {
        grid-template-columns: 1fr;
    }
    .stat-number-wrap {
        font-size: 2.5rem;
    }
}
