
        :root {
            --accent-blue: #2563eb;
            --ink-900: #0f172a;
            --ink-600: #475569;
        }

        .service-hero {
            background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        
        .service-hero h1 {
            font-size: 3.5rem;
            color: white;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .service-hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
        }
        
        .benefit-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 2rem;
            height: 100%;
            transition: transform 0.3s ease;
            border-top: 4px solid var(--accent-blue);
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
        }
        .benefit-card p {
            color: #696E77;
        }
        .benefit-icon {
            width: 70px;
            height: 70px;
            background: var(--accent-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .benefit-icon i {
            font-size: 1.8rem;
            color: white;
        }
        
        .process-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2.5rem;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--accent-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.25rem;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }
        
        .contact-form-section {
            background: #f8fafc;
            padding: 80px 0;
        }
        
        .form-container {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 2.5rem;
        }
        
        .stat-highlight {
            text-align: center;
            padding: 2rem;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-blue);
            display: block;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: var(--ink-600);
        }
        @media (max-width: 767.98px) { 
            .stat-number {
                font-size: 20px;
                font-weight: 700;
                color: var(--accent-blue);
                display: block;
            }
            
            .stat-label {
                font-size: 14px;
                color: var(--ink-600);
            }
        }

        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
        }
        
        .comparison-table th, .comparison-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .comparison-table th {
            background-color: #f1f5f9;
            font-weight: 600;
        }
        
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        .checkmark {
            color: var(--accent-blue);
            font-weight: bold;
        }
        
        .crossmark {
            color: #ef4444;
            font-weight: bold;
        }
        
        @media (max-width: 768px) {
            .service-hero h1 {
                font-size: 2.5rem;
            }
            
            .service-hero p {
                font-size: 1.1rem;
            }
            
            .process-step {
                flex-direction: column;
            }
            
            .step-number {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .comparison-table {
                display: block;
                overflow-x: auto;
            }
        }