.impact-section {
    width: 100%;
    background-image: url('../src/heart_background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Poppins', sans-serif;
    margin-top: 0;
}

.impact-overlay {
    padding: 80px 20px;
    width: 100%;
    height: 100%;
}

.impact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.impact-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

.impact-subtitle {
    font-size: 36px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.impact-desc {
    font-size: 20px;
    margin: 0 auto 50px;
    max-width: 700px;
    font-weight: 400;
}

.impact-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.impact-card {
    background-color: #fff;
    color: #000;
    padding: 30px 20px;
    border-radius: 4px;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    height: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 20px;
}

.impact-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.impact-card-text {
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

@media (max-width: 1024px) {
    .impact-grid {
        justify-content: center;
    }

    .impact-card {
        flex: 0 0 calc(50% - 20px);
        max-width: none;
        padding: 28px;
    }

    .impact-desc {
        margin-bottom: 20px;
    }

    .impact-overlay {
        padding: 40px 16px;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 600px) {
    .impact-card {
        flex: 0 0 100%;
    }

    .impact-title {
        font-size: 28px;
    }

    .impact-card-title{
        font-size: 18px;
    }

    .impact-card-text{
        font-size: 18px;
    }

    .impact-subtitle {
        font-size: 24px;
    }
}