
        :root {
            --primary-color: #30A0FF;
            --secondary-color: #000000;
            --accent-color: #f8fafc;
            --text-primary: #1a202c;
            --text-secondary: #4a5568;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
        }
        
        .primary-color { color: var(--primary-color); }
        .bg-primary { background-color: var(--primary-color); }
        .border-primary { border-color: var(--primary-color); }
        
        .hover-lift:hover {
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .hover-scale:hover {
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1e90ff 100%);
        }
        
        .shadow-custom {
            box-shadow: 0 10px 25px rgba(48, 160, 255, 0.1);
        }
        
        .cta-button {
            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: 600;
        }
        
        .cta-button:hover {
            background: #2891e6;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(48, 160, 255, 0.3);
        }
        
        .whatsapp-button {
            background: #25D366;
            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: 600;
        }
        
        .whatsapp-button:hover {
            background: #20ba5a;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        }
        
        @media (max-width: 768px) {
            .mobile-stack {
                flex-direction: column;
            }
            
            .mobile-text-center {
                text-align: center;
            }
        }
        
        .faq-item {
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: var(--primary-color);
            box-shadow: 0 4px 12px rgba(48, 160, 255, 0.1);
        }
        
        .checklist-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
            padding: 12px;
            background: #f8fafc;
            border-radius: 8px;
            border-left: 4px solid var(--primary-color);
        }
        
        .stat-card {
            background: white;
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }
    