
        :root {
            --primary-color: #223777;
            --secondary-color: #000000;
            --accent-color: #f8fafc;
            --text-gray: #64748b;
            --light-gray: #f1f5f9;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--secondary-color);
            background-color: #ffffff;
        }
        
        .primary-color { color: var(--primary-color); }
        .bg-primary { background-color: var(--primary-color); }
        .border-primary { border-color: var(--primary-color); }
        
        .hover-lift {
            transition: all 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(34, 55, 119, 0.15);
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1a2b5c 100%);
        }
        
        .service-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(34, 55, 119, 0.15);
            border-color: var(--primary-color);
        }
        
        .image-gallery img {
            border-radius: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .image-gallery img:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(34, 55, 119, 0.2);
        }
        
        .contact-btn {
            background: var(--primary-color);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            font-weight: 500;
            border: 2px solid var(--primary-color);
        }
        
        .contact-btn:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(34, 55, 119, 0.25);
        }
        
        .whatsapp-btn {
            background: #25D366;
            border-color: #25D366;
        }
        
        .whatsapp-btn:hover {
            background: white;
            color: #25D366;
            border-color: #25D366;
        }
        
        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
            margin: 3rem 0;
        }
        
        .testimonial-box {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-left: 4px solid var(--primary-color);
            padding: 2rem;
            border-radius: 0 12px 12px 0;
            margin: 2rem 0;
            position: relative;
        }
        
        .testimonial-box::before {
            content: '"';
            font-size: 4rem;
            color: var(--primary-color);
            position: absolute;
            top: -10px;
            left: 20px;
            opacity: 0.3;
        }
        
        .stats-counter {
            background: var(--primary-color);
            color: white;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            margin: 1rem 0;
        }
        
        .process-step {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1rem 0;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .process-step:hover {
            border-color: var(--primary-color);
            transform: translateX(10px);
        }
        
        .process-step::before {
            content: attr(data-step);
            position: absolute;
            left: -15px;
            top: 20px;
            background: var(--primary-color);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }
            
            .service-card {
                padding: 1.5rem;
            }
            
            .process-step {
                margin-left: 20px;
            }
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1a2b5c 100%);
            color: white;
            padding: 3rem 2rem;
            border-radius: 16px;
            text-align: center;
            margin: 3rem 0;
        }
        
        .highlight-box {
            background: rgba(34, 55, 119, 0.05);
            border: 1px solid rgba(34, 55, 119, 0.2);
            border-radius: 12px;
            padding: 2rem;
            margin: 2rem 0;
        }
    