       
        .custom-service-body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f8fffe 0%, #f0f9f7 100%);
            overflow-x: hidden;
        }

        .custom-service-container {
            max-width: 1200px;
            margin: 0 auto;
            /* padding: 0 20px; */
        }

        .custom-service-header {
            background: linear-gradient(135deg, #2aae8f 0%, #1e8a6f 100%);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .custom-service-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.12)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .custom-service-hero {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .custom-service-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ffffff, #e0f7f3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .custom-service-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
        }

        .custom-service-section {
            padding: 80px 0;
        }

        .custom-service-section-title {
            font-size: 2.5rem;
            color: #2aae8f;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
        }

        .custom-service-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #2aae8f, #1e8a6f);
            border-radius: 2px;
        }

        .custom-service-definition {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(42, 174, 143, 0.1);
            margin-bottom: 60px;
            border: 1px solid rgba(42, 174, 143, 0.1);
        }

        .custom-service-process-steps {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .custom-service-process-step {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(42, 174, 143, 0.1);
            border-left: 5px solid #2aae8f;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .custom-service-process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(42, 174, 143, 0.15);
        }

        .custom-service-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .custom-service-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(42, 174, 143, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(42, 174, 143, 0.1);
        }

        .custom-service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(42, 174, 143, 0.15);
        }

        .custom-service-card-title {
            color: #2aae8f;
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .custom-service-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .custom-service-benefit-item {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(42, 174, 143, 0.08);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .custom-service-benefit-item:hover {
            transform: translateY(-3px);
        }

        .custom-service-benefit-title {
            color: #2aae8f;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .custom-service-process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .custom-service-process-card {
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(42, 174, 143, 0.1);
            position: relative;
            border: 1px solid rgba(42, 174, 143, 0.1);
        }

        .custom-service-step-number {
            position: absolute;
            top: -15px;
            left: 30px;
            background: linear-gradient(135deg, #2aae8f, #1e8a6f);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .custom-service-case-study {
            background: linear-gradient(135deg, #2aae8f, #1e8a6f);
            color: white;
            padding: 60px 40px;
            border-radius: 25px;
            margin: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .custom-service-case-study::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        }

        .custom-service-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .custom-service-metric-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(42, 174, 143, 0.1);
            border: 2px solid rgba(42, 174, 143, 0.1);
            transition: border-color 0.3s ease;
        }

        .custom-service-metric-card:hover {
            border-color: #2aae8f;
        }

        .custom-service-metric-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #2aae8f;
            margin-bottom: 10px;
        }

        .custom-service-solutions-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .custom-service-solution-item {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(42, 174, 143, 0.08);
            border-left: 5px solid #2aae8f;
        }

        .custom-service-solution-title {
            color: #2aae8f;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .custom-service-solution-title::before {
            content: '✅';
            font-size: 1.2rem;
        }

        .custom-service-footer {
            background: #1a1a1a;
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .custom-service-cta {
            background: linear-gradient(135deg, #2aae8f, #1e8a6f);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-top: 20px;
        }

        .custom-service-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(42, 174, 143, 0.3);
        }

        @media (max-width: 768px) {
            .custom-service-title {
                font-size: 2.5rem;
            }
            
            .custom-service-section {
                padding: 50px 0;
            }
            
            .custom-service-services-grid,
            .custom-service-process-grid {
                grid-template-columns: 1fr;
            }
        }
