* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

       
        .container-top {
            width: 100%;
            max-width: 1920px;
            background-color: white;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }

        /* Hero Section */
        .hero {
            position: relative;
            
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .hero-bg-image {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url('../img/bg/c-p-bg-new.png') center/cover no-repeat;
            
        }

      

        .hero-content {
            position: relative;
            z-index: 10;
            padding: 90px 20px 150px;
            text-align: center;
            color: white;
            max-width: 1100px;
            margin: 0 auto;
        }

        .hero-content h1 {
            font-size: 58px;
            font-weight: 700;
			color: #ffffff;
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            line-height: 1.1;
        }

        .hero-content p {
            font-size: 24px;
            font-weight: 500;
			color: white;
            line-height: 1.4;
            margin-bottom: 50px;
            letter-spacing: 0.5px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
        }

        /* Bottom Bar Section */
        .bottom-bar {
            position: relative;
            height: 125px;
            background: #36538b;
            overflow: hidden;
        }

        /* Skewed White Backgrounds */
        .bb-bg-white-1 {
            position: absolute;
            top: 0; bottom: 0;
            left: 33%; width: 22%;
            background: white;
            transform: skewX(-35deg);
        }

        .bb-bg-white-2 {
            position: absolute;
            top: 0; bottom: 0;
            left: 58%; width: 25%;
            background: white;
            transform: skewX(-35deg);
        }

        .bb-content {
            position: relative;
            z-index: 10;
            display: flex;
            height: 100%;
            width: 100%;
            align-items: center;
        }

        .bb-col-text {
            width: 33%;
            text-align: right;
            padding-right: 30px;
            font-size: 26px;
            font-weight: 700;
            color: white;
            line-height: 1.2;
            letter-spacing: 0.5px;
        }

        .bb-col-toner {
            width: 22%;
            display: flex;
            justify-content: center;
        }

        .bb-col-gap {
            width: 3%;
        }

        .bb-col-service {
            width: 25%;
            display: flex;
            justify-content: center;
        }

        .bb-col-right {
            width: 17%;
        }

        /* Shared Button Styles */
        .btn {
            font-family: 'Oswald', sans-serif;
            font-size: 16px;
            font-weight: 700;
            padding: 16px 40px;
            border-radius: 40px;
            cursor: pointer;
            text-transform: uppercase;
            transition: all 0.2s ease;
            letter-spacing: 0.5px;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.25);
        }

        /* Specific Button Styles */
        .btn-hero-red {
            background-color: #ce1212;
            color: white;
            border: 1px solid white;
        }

        .btn-hero-blue {
            background-color: #2161c5;
            color: white;
            border: 1px solid white;
        }

        .btn-toner {
            background-color: #2161c5;
            color: white;
            border: none;
            padding: 15px 35px;
        }

        .btn-service {
            background-color: #ce1212;
            color: white;
            border: none;
            padding: 15px 35px;
        }

        /* ===== FIX: Vertically center icons in proactive-services-narrow ===== */
        #app-feature .feature-item {
            display: -webkit-box !important;
            display: -webkit-flex !important;
            display: -ms-flexbox !important;
            display: flex !important;
            -webkit-box-align: center !important;
            -webkit-align-items: center !important;
            -ms-flex-align: center !important;
            align-items: center !important;
            float: none !important;
            clear: both !important;
            padding-top: 12px !important;
            padding-bottom: 12px !important;
        }

        #app-feature .feature-item .icon {
            display: -webkit-inline-box !important;
            display: -webkit-inline-flex !important;
            display: -ms-inline-flexbox !important;
            display: inline-flex !important;
            -webkit-box-align: center !important;
            -webkit-align-items: center !important;
            -ms-flex-align: center !important;
            align-items: center !important;
            -webkit-box-pack: center !important;
            -webkit-justify-content: center !important;
            -ms-flex-pack: center !important;
            justify-content: center !important;
            vertical-align: middle !important;
            width: 64px;
            height: 64px;
            -webkit-flex-shrink: 0;
            -ms-flex-negative: 0;
            flex-shrink: 0;
            margin-right: 16px;
        }

        #app-feature .feature-item .icon i {
            vertical-align: middle !important;
            line-height: 1 !important;
            font-size: 26px;
            color: #ffffff;
        }

        #app-feature .feature-item .text {
            display: -webkit-inline-box !important;
            display: -webkit-inline-flex !important;
            display: -ms-inline-flexbox !important;
            display: inline-flex !important;
            -webkit-box-align: center !important;
            -webkit-align-items: center !important;
            -ms-flex-align: center !important;
            align-items: center !important;
            vertical-align: middle !important;
            -webkit-box-flex: 1;
            -webkit-flex: 1;
            -ms-flex: 1;
            flex: 1;
        }

        #app-feature .feature-item .text h3 {
            margin-bottom: 0 !important;
            line-height: 1.3;
            font-size: 18px;
        }

        /* ensure the container itself doesn't interfere */
        #app-feature .content-right.clearfix {
            display: -webkit-box !important;
            display: -webkit-flex !important;
            display: -ms-flexbox !important;
            display: flex !important;
            -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

        #app-feature .content-right.clearfix .feature-item {
            -webkit-box-flex: 0;
            -webkit-flex: 0 0 50%;
            -ms-flex: 0 0 50%;
            flex: 0 0 50%;
            max-width: 50%;
        }

        /* small screens: full width */
        @media (max-width: 576px) {
            #app-feature .content-right.clearfix .feature-item {
                -webkit-box-flex: 0;
                -webkit-flex: 0 0 100%;
                -ms-flex: 0 0 100%;
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

        /* ===== End fix ===== */
		
.image-card {
  display: flex;
  flex-direction: column; /* Stacks the text vertically below the image */
  gap: 120px;              /* Controls the exact space under the image */
  margin: 0;              /* Removes default browser spacing */
  max-width: 500px;       /* Limits the width to match your image size */
}

.image-card img {
  width: 100%;            /* Forces image to fill the container width */
  height: auto;           /* Maintains original image aspect ratio */
  display: block;         /* Removes unwanted bottom whitespace from images */
}