.our-impact-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #508991 0%, #5a9aa3 100%);
    overflow: hidden;
}

.impact-blur-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(208, 245, 75, 0.3) 0%, rgba(208, 245, 75, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.impact-blur-left {
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
}

.impact-blur-right {
    right: -200px;
    top: 10%;
}

.our-impact-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.our-impact-section .section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 30.9px;
    color: #fff;
    background: transparent;
    display: inline-block;
    padding: 0;
    border-radius: 0;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.our-impact-section .section-main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 48px;
    color: #fff;
    margin: 0 0 24px 0;
}

.our-impact-section .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32.5px;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 60px;
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.impact-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.impact-stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(209, 237, 69, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D1ED45;
}

.impact-stat-icon svg {
    width: 32px;
    height: 32px;
}

.impact-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: #D1ED45;
}

.impact-stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
}

.impact-button {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid #D1ED45;
    border-radius: 8px;
    color: #D1ED45;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.impact-button:hover {
    background: #D1ED45;
    color: #000;
}

@media (max-width: 968px) {
    .our-impact-section {
        padding: 80px 0;
    }
    
    .our-impact-section .section-main-heading {
        font-size: 36px;
        line-height: 40px;
    }
    
    .our-impact-section .section-subtitle {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 50px;
    }
    
    .impact-stats-grid {
        gap: 40px;
    }
    
    .impact-blur-circle {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .impact-stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .our-impact-section .section-main-heading {
        font-size: 32px;
        line-height: 36px;
    }
    
    .impact-stat-number {
        font-size: 40px;
    }
}

@media (max-width: 600px) {
    .our-impact-section {
        padding: 60px 0;
    }
    
    .our-impact-section .section-label {
        font-size: 18px;
        line-height: 26px;
    }
    
    .our-impact-section .section-main-heading {
        font-size: 28px;
        line-height: 32px;
    }
    
    .our-impact-section .section-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    
    .impact-stat-number {
        font-size: 36px;
    }
    
    .impact-stat-label {
        font-size: 14px;
        line-height: 22px;
    }
    
    .impact-button {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
    
    .impact-blur-left {
        left: -250px;
    }
    
    .impact-blur-right {
        right: -250px;
    }
}

