
.impact-section {
    position: relative;
    background-color: #F3F4EF;
    width: 100%;
   padding: 5rem 1rem;
    overflow: hidden !important;
    display: flex;
    align-items: center;
    justify-content: center;

    .texture-decor {
        position: absolute;
        top: -0.875rem;
        left: 60%;
        width: 46.125rem;
        height: 28.375rem;
        background-image: url("/assets/images/hero-bg.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        opacity: 1;
        transform: rotate(-36.52deg);
        mix-blend-mode: multiply;
        pointer-events: none;
        z-index: 1;
    }



    /* Core content container */
    .impact-content {
        position: relative;
        z-index: 2;
    }

    /* Title */
    .impact-title {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 2.875rem;
        line-height: 3.625rem;
        color: #191A1A;
        vertical-align: middle;
    }

    /* Description text */
    .impact-desc {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 26px;
        color: #191A1A;
        letter-spacing: 0;
        vertical-align: middle;
    }

    /* Star bullet paragraph style */
    .star-bullet {
        position: relative;
        padding-left: 28px;
        /* space for bullet */
    }

    .star-bullet::before {
        content: "";
        background-image: url('/assets/images/decorator/Star_decorator.png');
        display: block;
        position: absolute;
        left: 0;

        /* --- FIX START --- */
        top: 0.2em;
        /* Align with the start of the first line of text. 
                 Using 'em' is better as it scales with font size. */
        transform: translateY(0);
        /* Remove vertical centering transform */
        /* --- FIX END --- */

        width: 16px;
        height: 16px;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .impact-italic-text {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-style: italic;
        font-size: 15.8px;
        line-height: 23.72px;
        letter-spacing: 0;
        vertical-align: middle;
        color: #191A1A;
        max-width: 40rem;
    }


    /* 📱 Responsive Adjustments */
    @media (min-width: 1440px) {
        .texture-decor {
            left: 52rem;
            /* Shift right slightly */
            width: 48rem;
            height: 30rem;
        }
    }

    @media (max-width: 992px) {
        .impact-title {
            font-size: 2.25rem;
            line-height: 3rem;
        }

        .impact-desc {
            font-size: 1.1rem;
            line-height: 1.6rem;
        }

        .impact-section {
            padding: 60px 0;
            background-position: center;
        }
    }

    @media (max-width: 576px) {
        padding: 3rem 0rem;
        .impact-title {
            font-size: 2.25rem;
            line-height: 2.3rem;
        }

        .impact-desc {
            font-size: 1rem !important;
            line-height: 1.4rem;
        }

        .star-bullet::before {
            font-size: 14px;
            top: 2px;
        }

        .impact-italic-text {
            font-size: 1rem;
        }

        .texture-decor {
            position: absolute;
            top: -0.875rem;
            left: 0%;
            width: 46.125rem;
            height: 28.375rem;
            background-image: url(/assets/images/hero-bg.jpg);
            background-size: cover;
            background-repeat: no-repeat;
            opacity: 1;
            transform: rotate(-45.32deg);
            mix-blend-mode: multiply;
            pointer-events: none;
            z-index: 1;
        }


    }
}

.results-section {
    background-color: #FFFFFF;
    padding: 1rem 0;


    .results-title {
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-size: 2.25rem;
        line-height: 2.875rem;
        color: #191A1A;
    }

    .results-list {
        padding-left: 1.5rem;
        margin: 0;
        list-style-type: disc;
    }

    .results-bullets {
        list-style-type: disc;
        padding-left: 1.5rem;
        margin-bottom: 1rem;
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: 400;
        color: #191A1A;
    }

    .results-bullets li {
        margin-bottom: 1.25rem;
    }

    .highlight-bold {
        font-weight: 600;
        font-style: normal;
        color: #191A1A;
    }

    .results-list li {
        font-family: 'Inter', sans-serif;
        font-size: 1.125rem;
        line-height: 1.75rem;
        color: #191A1A;
        margin-bottom: 1rem;
    }

    .results-list li span {
        font-weight: 600;
    }

    .results-image {
        border-radius: 16px;
        max-width: 90%;
        height: auto;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }


    .custom-column-spacing {
        padding-right: 1rem;
    }

    @media (min-width: 768px) {
        .custom-column-spacing {
            padding-right: 2rem;
        }
    }

    @media (min-width: 992px) {
        .custom-column-spacing {
            padding-right: 3rem;


        }

        .results-bullets {
            padding-left: 1rem;
        }
    }

    @media (min-width: 1200px) {
        .custom-column-spacing {
            padding-right: 2.9rem;
        }

        .results-bullets {
            padding-left: 2rem;
        }
    }

    @media (max-width: 768px) {
        .results-title {
            font-size: 2rem;
            line-height: 2.5rem;
            text-align: center;
        }

        .results-list {
            padding-left: 1rem;
        }

        .results-list li {
            font-size: 1rem;
            line-height: 1.5rem;
            text-align: left;
        }

        .results-image {
            margin-top: 1.5rem;
            border-radius: 12px;
        }
    }

    @media (max-width:576px) {
        .results-title {
            font-size: 1.75rem;
        }

        .results-image {
            margin-top: 0px;
        }
    }
}

.impact-journey-section {
    background-color: #F3F4EF;
    padding: 4.5rem 0;
}

.impact-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #e0e0e0;
    margin-bottom: 2rem;

}


.impact-card:hover {
    background-color: #191A1A;
    border-color: #191A1A;
}

.impact-card-title,
.impact-card-subtitle,
.impact-card-desc,
.impact-bullet-list li {
    color: #191A1A;

}


.impact-card:hover .impact-card-title,
.impact-card:hover .impact-card-subtitle,
.impact-card:hover .impact-card-desc,
.impact-card:hover .impact-bullet-list li {
    color: #fff;
}


.impact-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.875rem;
    line-height: 2.875rem;
}

.impact-card-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1.875rem;
}

.impact-card-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.625rem;
}

.impact-bullet-list {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.impact-bullet-list li {
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6rem;
}

@media (max-width: 768px) {
    .impact-card {
        padding: 1.35rem;
        margin-bottom: 2rem;
    }

    .impact-card-title {
        font-size: 1.5rem;
        line-height: 2.25rem;
    }

    .impact-card-subtitle {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .impact-card-desc,
    .impact-bullet-list li {
        font-size: 0.95rem;
        line-height: 1.5rem;
    }
}



.impact-growth-challenge {
    background-color: #FFFFFF;
    padding: 50px 0;
}

/* Optional wrapper if used */
.section-wrapper {
    padding-inline: 3rem;
    margin-inline: 3rem;
}

@media (max-width: 992px) {
    .section-wrapper {
        padding-inline: 2rem;
        margin-inline: 2rem;
    }
}

@media (max-width: 768px) {
    .section-wrapper {
        padding-inline: 1rem;
        margin-inline: 1rem;
    }
}

@media (max-width: 576px) {
    .section-wrapper {
        padding-inline: 0.75rem;
        margin-inline: 0.75rem;
    }

    .impact-main-title {
        font-size: 1.75rem;
    }

    .impact-card-title {
        font-size: 1.25rem;
    }

    .impact-card-desc {
        font-size: 1rem;
    }

    .impact-bullet-list li {
        font-size: 1rem;
    }

    .impact-card {
        margin-bottom: 1rem;
    }


    .impact-journey-section {
        padding: 3.125rem 0px;
    }
}

/* TEXT HEADINGS */
.impact-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 2.5rem;
    line-height: 1.3;
    color: #191A1A;
    margin-bottom: 1rem;
}

.impact-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #191A1A;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* CTA Button */
.impact-blue-btn {
    background-color: #7235F4;
    color: #fff;
    padding: 11px 24px;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.impact-blue-btn:hover {
    background-color: #5e2cc1;
    color: #fff;
}

/* Image Styling */
.impact-image {
    max-width: 100%;
    width: 100%;
    max-height: 400px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .impact-image {
        max-height: 320px;
    }
}

@media (max-width: 768px) {
    .impact-image {
        margin-top: 20px;
        object-fit: contain;
        max-height: 280px;
    }
}

@media (max-width: 576px) {
    .impact-image {
        margin-top: 10px;
        object-fit: contain;
        max-height: none;
    }

    .impact-heading {
        font-size: 1.75rem;
    }

    .impact-desc {
        font-size: 1rem;
    }

    .impact-blue-btn {
        width: 75%;
        text-align: center;
               padding: 9px 10px;
        font-size: 0.75rem;
    }


}

