:root {
            --primary-orange: #FF6B35;
            --primary-white: #FFFFFF;
            --text-dark: #2C3E50;
            --light-gray: #F8F9FA;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        .btn-primary {
            background-color: var(--primary-orange);
            border-color: var(--primary-orange);
            color: var(--primary-white);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #E55A2B;
            border-color: #E55A2B;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
        }
        
        .navbar {
            background-color: var(--primary-white) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-orange) !important;
        }
        
        .hero-section {
            background: linear-gradient(135deg, var(--primary-orange) 0%, #FF8A65 100%);
            color: var(--primary-white);
            padding: 100px 0;
            position: relative;
        }
        
        .hero-section::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="white" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .service-card {
            background: var(--primary-white);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #E9ECEF;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-orange), #FF8A65);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--primary-white);
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            width: 60px;
            height: 4px;
            background: var(--primary-orange);
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .about-section {
            background: var(--light-gray);
        }
        
        .whatsapp-btn {
            background: #25D366;
            border-color: #25D366;
            color: var(--primary-white);
            font-weight: 600;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .whatsapp-btn:hover {
            background: #20BA5A;
            border-color: #20BA5A;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
            color: var(--primary-white);
            text-decoration: none;
        }
        
        .contact-section {
            background: var(--text-dark);
            color: var(--primary-white);
        }
        
        .contact-info {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            backdrop-filter: blur(10px);
        }
        
        .location-badge {
            background: var(--primary-orange);
            color: var(--primary-white);
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
            display: inline-block;
            margin: 5px;
        }
        
        .stats-counter {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-orange);
        }
        
        .stats-section {
            background: var(--primary-white);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 50px 30px;
            margin: 40px 0;
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .service-card {
                margin-bottom: 30px;
            }
        }
        
        /* Cookie Consent Styles */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, var(--text-dark) 0%, #34495e 100%);
            color: white;
            z-index: 9999;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
            animation: slideUp 0.5s ease-out;
        }
        
        .cookie-content {
            padding: 20px 0;
        }
        
        @keyframes slideUp {
            from {
                transform: translateY(100%);
            }
            to {
                transform: translateY(0);
            }
        }
        
        /* Footer Styles */
        footer a:hover {
            color: var(--primary-orange) !important;
            transition: color 0.3s ease;
        }
        
        footer .btn-outline-light:hover {
            background-color: var(--primary-orange);
            border-color: var(--primary-orange);
        }