 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        
        :root {
            --atoll: #0a5a78;
            --ecru-white: #fbfbf5;
            --fern: #5ab453;
            --atlantis: #92c933;
            --shadow-green: #99bac0;
            --deco: #cddf8f;
            --botticelli: #c9e0e5;
            --beryl-green: #d5e5c3;
            --waterloo: #7e8494;
            --gray-suit: #bcb9c6;
            --health-blue: #4A90E2;
            --health-teal: #17A2B8;
            --health-mint: #20C997;
            --health-rose: #E83E8C;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--ecru-white);
            color: var(--waterloo);
        }
        
        /* Custom animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(1deg); }
            75% { transform: translateY(-5px) rotate(-1deg); }
        }
        
        @keyframes pulse-glow {
            0%, 100% { 
                box-shadow: 0 0 20px rgba(90, 180, 83, 0.3), 
                           0 0 40px rgba(10, 90, 120, 0.1); 
            }
            50% { 
                box-shadow: 0 0 30px rgba(90, 180, 83, 0.5), 
                           0 0 60px rgba(10, 90, 120, 0.2); 
            }
        }
        
        @keyframes slide-up {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes wave {
            0%, 100% { transform: translateX(0) translateY(0); }
            25% { transform: translateX(-10px) translateY(-5px); }
            75% { transform: translateX(10px) translateY(5px); }
        }

        @keyframes fade-in-up {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes bounce-in {
            0% { opacity: 0; transform: scale(0.8); }
            50% { transform: scale(1.05); }
            100% { opacity: 1; transform: scale(1); }
        }

        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        @keyframes patient-flow {
            0% { transform: translateX(-100%) scale(0); opacity: 0; }
            20% { opacity: 1; transform: scale(1); }
            80% { opacity: 1; }
            100% { transform: translateX(300%) scale(0); opacity: 0; }
        }

        @keyframes vitals-monitor {
            0%, 100% { transform: translateY(0); }
            25% { transform: translateY(-2px); }
            75% { transform: translateY(2px); }
        }
        
        .float-animation {
            animation: float 8s ease-in-out infinite;
        }
        
        .pulse-glow {
            animation: pulse-glow 3s ease-in-out infinite;
        }
        
        .slide-up {
            animation: slide-up 0.8s ease-out forwards;
        }
        
        .wave-animation {
            animation: wave 6s ease-in-out infinite;
        }

        .fade-in-up {
            animation: fade-in-up 0.8s ease-out forwards;
        }

        .bounce-in {
            animation: bounce-in 0.6s ease-out forwards;
        }

        .heartbeat {
            animation: heartbeat 2s ease-in-out infinite;
        }

        .patient-flow {
            animation: patient-flow 4s ease-in-out infinite;
        }

        .vitals-monitor {
            animation: vitals-monitor 3s ease-in-out infinite;
        }
        
        /* Gradient backgrounds */
        .gradient-bg {
            background: linear-gradient(135deg, var(--atoll) 0%, var(--fern) 50%, var(--atlantis) 100%);
        }
        
        .gradient-bg-soft {
            background: linear-gradient(135deg, var(--botticelli) 0%, var(--beryl-green) 50%, var(--deco) 100%);
        }
        
        .text-gradient {
            background: linear-gradient(135deg, var(--atoll) 0%, var(--fern) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Healthcare specific gradients */
        .gradient-bg-health {
            background: linear-gradient(135deg, var(--health-blue) 0%, var(--health-teal) 50%, var(--health-mint) 100%);
        }
        
        .gradient-bg-health-soft {
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(23, 162, 184, 0.1) 50%, rgba(32, 201, 151, 0.1) 100%);
        }
        
        .text-gradient-health {
            background: linear-gradient(135deg, var(--health-blue) 0%, var(--health-mint) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Glassmorphism effect */
        .glass {
            background: rgba(251, 251, 245, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(153, 186, 192, 0.3);
        }
        
        .glass-green {
            background: rgba(213, 229, 195, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(146, 201, 51, 0.2);
        }
        
        .glass-health {
            background: rgba(74, 144, 226, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(74, 144, 226, 0.2);
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--ecru-white);
            border-radius: 6px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--atoll), var(--fern));
            border-radius: 6px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(var(--fern), var(--atlantis));
        }
        
        /* Button styles */
        .btn-primary {
            background: linear-gradient(135deg, var(--atoll), var(--fern));
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 10px 30px rgba(10, 90, 120, 0.3);
        }
        
        .btn-secondary {
            border: 2px solid var(--fern);
            color: var(--fern);
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: var(--fern);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Healthcare specific button styles */
        .btn-primary-health {
            background: linear-gradient(135deg, var(--health-blue), var(--health-mint));
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary-health:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
        }
        
        .btn-secondary-health {
            border: 2px solid var(--health-blue);
            color: var(--health-blue);
            transition: all 0.3s ease;
        }
        
        .btn-secondary-health:hover {
            background: var(--health-blue);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Navigation styles */
        .nav-link {
            position: relative;
            transition: all 0.3s ease;
            padding-bottom: 2px;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--fern), var(--atlantis));
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::before {
            width: 100%;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            top: -5px;
            left: 50%;
            width: 6px;
            height: 6px;
            background: var(--atlantis);
            border-radius: 50%;
            opacity: 0;
            transform: translateX(-50%) translateY(10px);
            transition: all 0.3s ease;
        }
        
        .nav-link:hover::after {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        
        .nav-link:hover {
            color: var(--fern);
            transform: translateY(-1px);
        }

        /* Mobile menu styles */
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease;
            background: white;
            backdrop-filter: none;
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            width: 24px;
            height: 18px;
            cursor: pointer;
        }

        .hamburger span {
            width: 100%;
            height: 2px;
            background: var(--atoll);
            transition: all 0.3s ease;
            margin: 2px 0;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 1px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -4px);
        }

        /* Card hover effects */
        .hover-card {
            transition: all 0.3s ease;
        }

        .hover-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(10, 90, 120, 0.15);
        }

        /* Healthcare specific styles */
        .patient-card {
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .patient-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
            border-color: var(--health-mint);
        }

        .metric-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(10, 90, 120, 0.2);
            border-radius: 1rem;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .metric-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 30px rgba(10, 90, 120, 0.2);
        }

        .metric-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--atoll), var(--fern));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Medical equipment animation */
        .medical-equipment {
            position: relative;
            display: inline-block;
        }

        .medical-equipment::after {
            content: '';
            position: absolute;
            top: -5px;
            right: -5px;
            width: 8px;
            height: 8px;
            background: var(--health-mint);
            border-radius: 50%;
            animation: pulse-glow 2s ease-in-out infinite;
        }

        /* Responsive typography */
        @media (max-width: 640px) {
            .text-hero {
                font-size: 2rem;
                line-height: 1.15;
            }
            
            .text-hero-sub {
                font-size: 1.125rem;
            }
        }

        @media (min-width: 641px) and (max-width: 768px) {
            .text-hero {
                font-size: 2.5rem;
                line-height: 1.1;
            }
            
            .text-hero-sub {
                font-size: 1.25rem;
            }
        }

        @media (min-width: 769px) {
            .text-hero {
                font-size: 3rem;
                line-height: 1.1;
            }
            
            .text-hero-sub {
                font-size: 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .text-hero {
                font-size: 3.5rem;
                line-height: 1.1;
            }
        }

        @media (min-width: 1280px) {
            .text-hero {
                font-size: 4rem;
                line-height: 1.1;
            }
        }

        /* Card hover effects for mobile */
        @media (hover: none) {
            .hover-card:active {
                transform: scale(0.98);
            }
        }