.ZincCoatedSection {
    position: relative;
    width: 100%;
    min-height: 480px;
    background-image: url('/assets/images/nutricos_banner/banner_03.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 80px;
    box-sizing: border-box;
}

/* Dark transparent overlay over the background coil image */
.ZincCoatedSection .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Left Content */
.ZincCoatedSection .textContent {
    color: #ffffff;
    position: relative;
    z-index: 5;
}

.ZincCoatedSection .heading {
    font-size: 35px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 28px;
    line-height: 1.25;
    text-align: center;
}

.ZincCoatedSection .highlightYellow {
    color: #f7ca18;
}

.ZincCoatedSection .benefitList {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ZincCoatedSection .benefitItem {
    font-size: 16px;
    /* line-height: 1.4; */
    color: #e0e0e0;
}

.ZincCoatedSection .benefitTitle {
    color: #f7ca18;
    font-weight: 700;
}

/* Right Content - Image Cards */
.ZincCoatedSection .imageGroup {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 5;
}

.ZincCoatedSection .rackImg_div .rackImg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile & Tablet Responsiveness */

@media (min-width:0px) and (max-width: 575.98px) {
    .ZincCoatedSection .heading {
        font-size: 22px;
    }

    .ZincCoatedSection {
        padding: 35px 0;
    }

    .ZincCoatedSection .imageGroup {
        margin-top: 30px;
    }
}

@media (min-width:576px) and (max-width: 767.98px) {
    .ZincCoatedSection .heading {
        font-size: 28px;
    }

    .ZincCoatedSection {
        padding: 35px 0;
    }

    .ZincCoatedSection .imageGroup {
        margin-top: 30px;
    }
}

@media (min-width:768px) and (max-width: 991.98px) {

    .ZincCoatedSection {
        padding: 40px 24px;
    }

    .ZincCoatedSection .contentWrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .ZincCoatedSection .heading {
        font-size: 25px;
    }

    .ZincCoatedSection .imageGroup {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }

    .ZincCoatedSection .rackImg_div {
        width: 250px;
    }
}