.our-impact-main {
    font-family: var(--ff-body);
}

/* Banner Section */
.impact-banner {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: calc(100vh - 80px);
    background-color: #f6f8eb;
    /* light greenish tint */
    overflow: hidden;
}

.impact-banner .banner-bg-img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    max-height: none;
    display: block;
}

.impact-banner .banner-text {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: 800;
    font-style: italic;
    color: #1a3c2c;
    line-height: 37px;
    letter-spacing: 2.5px;
    z-index: 2;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .impact-banner {
        height: calc(100vh - 60px);
        min-height: calc(100vh - 60px);
    }

    .impact-banner .banner-text {
        left: 5%;
        right: 5%;
        font-size: clamp(18px, 4.5vw, 26px);
        text-align: center;
        line-height: 30px;
        padding: 15px;
        border-radius: 4px;
        width: 90%;
        margin: 0 auto;
    }
}

/* Intro Section */
.impact-intro {
    padding: 80px 0 0 0;
    background-color: #fff;
}

.impact-feature.bg-light {
    padding: 0;
    padding-bottom: 60px;
}

.impact-intro .section-title {
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-align: center;
}

.impact-intro .intro-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto;
    letter-spacing: 0.8px;
    text-align: center;
}

/* Feature Sections */
.impact-feature {
    padding: 60px 0;
    background-color: #fbfbfb;
}

.impact-feature:nth-child(even) {
    background-color: #ffffff;
}

.impact-feature .feature-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
}

.impact-feature .text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.impact-feature .feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.impact-feature .feature-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    letter-spacing: 0.8px;
}

@media (min-width: 992px) {
    .text-xl-end {
        text-align: right;
    }
}

/* CSR Section */
.impact-csr {
    background-color: #000;
    color: #fff;
    padding: 90px 0 10px;
}

.impact-csr .csr-img-wrapper {
    margin-bottom: 60px;
    text-align: center;
}

.impact-csr .csr-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.impact-csr .csr-text {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 2px;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.impact-csr .csr-text strong {
    font-weight: 700;
    color: #fff;
}

@media (max-width: 767px) {
    .impact-intro {
        padding-top: 56px;
    }

    .impact-feature {
        padding: 44px 0;
    }

    .impact-feature .feature-title {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .impact-feature .feature-text,
    .impact-intro .intro-text,
    .impact-csr .csr-text {
        font-size: 14px;
        letter-spacing: 0.4px;
        line-height: 1.7;
    }

    .impact-intro .section-title {
        font-size: 26px !important;
    }
}

@media (min-width: 992px) {
    .impact-csr .csr-text-container {
        padding-left: 50px;
    }

    .impact-intro .section-title {
        font-size: 26px;
    }
}