        body {
            box-sizing: border-box;
        }
        
        * {
            font-family: 'Poppins', sans-serif;
        }
        
        .gradient-primary {
            background: linear-gradient(135deg, #001e52 0%, #002a6b 50%, #003d8f 100%);
        }
        
        .text-primary {
            color: #001e52;
        }
        
        .bg-primary {
            background-color: #001e52;
        }
        
        .text-highlight {
            color: #fb572d;
        }
        
        .bg-highlight {
            background-color: #fb572d;
        }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 30, 82, 0.15);
        }
        
        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 30, 82, 0.08);
            border: 1px solid rgba(0, 30, 82, 0.1);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 30, 82, 0.15);
            border-color: #fb572d;
        }
        
        .feature-icon {
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            background-color: #fb572d !important;
            transform: scale(1.1);
        }
        
        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(0, 30, 82, 0.1);
            border: 2px solid #e5e7eb;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 30, 82, 0.15);
            border-color: #fb572d;
        }
        
        .pricing-card.featured {
            border-color: #fb572d;
            transform: scale(1.05);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-8px);
        }
        
        .dropdown {
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }
        
        .dropdown-parent:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .hero-animation {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .pulse-dot {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .whasols-glow {
            animation: whasolsGlow 3s ease-in-out infinite;
        }
        
        @keyframes whasolsGlow {
            0%, 100% { filter: drop-shadow(0 0 15px rgba(251, 87, 45, 0.4)); }
            50% { filter: drop-shadow(0 0 25px rgba(251, 87, 45, 0.7)); }
        }
        
        .comparison-table {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 30, 82, 0.1);
        }
