
        /* Reuse existing styles from main CSS */
        :root {
            --primary: #2e7d32;
            --primary-dark: #1b5e20;
            --secondary: #ffab00;
            --light: #f5f5f5;
            --dark: #212121;
            --gray: #757575;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Services Page Specific Styles */
        .services-hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(109, 108, 108, 0.7)), url('Img/img11.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0 100px;
            text-align: center;
        }
        
        .services-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .services-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: rgba(255,255,255,0.9);
        }
        
        .service-intro {
            padding: 80px 0;
            text-align: center;
        }
        
        .service-intro h2 {
            margin-bottom: 20px;
        }
        
        .service-intro p {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            padding: 60px 0;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            background: var(--primary);
            color: white;
            font-size: 2.5rem;
            padding: 30px;
            text-align: center;
        }
        
        .service-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h3 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .service-features {
            margin: 20px 0;
            flex-grow: 1;
        }
        
        .service-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .service-features li:before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary);
        }
        
        .process-section {
            background: var(--light);
            padding: 80px 0;
        }
        
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-top: 50px;
            position: relative;
        }
        
        .process-steps:before {
            content: '';
            position: absolute;
            left: 40px;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary);
            z-index: 1;
        }
        
        .process-step {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .step-number {
            background: var(--primary);
            color: white;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .step-content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            flex-grow: 1;
        }
        
        .step-content h4 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .case-studies {
            padding: 80px 0;
        }
        
        .case-study-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-top: 40px;
            display: flex;
        }
        
        .case-study-image {
            flex: 1;
            min-height: 300px;
        }
        
        .case-study-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .case-study-content {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .case-study-content h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .results {
            display: flex;
            gap: 30px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .result-item {
            flex: 1;
            min-width: 150px;
        }
        
        .result-value {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary);
        }
        
        .result-label {
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        .cta-banner {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            text-align: center;
            padding: 80px 0;
        }
        
        .cta-banner h2 {
            color: white;
            margin-bottom: 30px;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .case-study-card {
                flex-direction: column;
            }
            
            .case-study-image {
                min-height: 200px;
            }
        }
        
        @media (max-width: 768px) {
            .services-hero {
                padding: 120px 0 80px;
            }
            
            .services-hero h1 {
                font-size: 2.5rem;
            }
            
            .services-hero p {
                font-size: 1.1rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .process-steps:before {
                left: 20px;
            }
            
            .step-number {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }