    

        .coreimpact-servicehome-container {
            max-width: 1150px;
            margin: 0 auto;
            padding-top: 50px;
        }

        .coreimpact-servicehome-header {
            text-align: center;
            margin-bottom: 50px;
            color: #3e2d94;
        }

        .coreimpact-servicehome-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            color: #3e2d94 !important;  
        }

        .coreimpact-servicehome-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            color: #2d3748;
        }

        .coreimpact-servicehome-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .coreimpact-servicehome-card {
            background: white;
            /* border-radius: 15px; */
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .coreimpact-servicehome-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .coreimpact-servicehome-image-wrapper {
            width: 100%;
            height: 180px;
            overflow: hidden;
            position: relative;
        }

        .coreimpact-servicehome-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .coreimpact-servicehome-card:hover .coreimpact-servicehome-image {
            transform: scale(1.1);
        }

        .coreimpact-servicehome-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
        }

        .coreimpact-servicehome-content {
            padding: 10px;
        }

        .coreimpact-servicehome-number {
            display: inline-block;
            background: #3e2d94;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            text-align: center;
            line-height: 24px;
            font-weight: 700;
            margin-bottom: 7px;
            font-size: 0.6rem;
            justify-content: center;
            display: flex;align-items: center;
        }

        .coreimpact-servicehome-name {
            font-size: 13px;
            font-weight: 600;
            color: #2d3748;
            line-height: 1.4;
            padding-top: 10px;
            /* min-height: 0px; */
            text-align: center;
        }

        @media (max-width: 1200px) {
            .coreimpact-servicehome-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .coreimpact-servicehome-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                margin-top: -40px;
            }

            .coreimpact-servicehome-title {
                font-size: 2rem;
            }

            .coreimpact-servicehome-image-wrapper {
                height: 180px;
            }
        }

        @media (max-width: 480px) {
            .coreimpact-servicehome-grid {
                grid-template-columns: 1fr 1fr;
                padding: 10px;
                gap: 7px;
            }

            .coreimpact-servicehome-title {
                font-size: 1.5rem;
            }
        }

        .coreimpact-servicehome-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255,255,255,0.9);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #667eea;
            z-index: 1;
        }