        :root {
            --medical-blue: #0A2540;
            --trust-teal: #00D4FF;
            --care-green: #E8F3EE;
            --soft-ivory: #FCFCFD;
        }

        body {
            background-color: var(--soft-ivory);
            color: var(--medical-blue);
            font-family: 'Plus Jakarta Sans', sans-serif;
            scroll-behavior: smooth;
        }

        .serif { font-family: 'Instrument Serif', serif; }
        
        .page-enter { animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .glass-nav {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(10, 37, 64, 0.05);
        }

        .service-card {
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            border: 1px solid transparent;
        }
        .service-card:hover {
            transform: translateY(-12px);
            border-color: rgba(0, 212, 255, 0.2);
            box-shadow: 0 30px 60px rgba(10, 37, 64, 0.06);
        }

        .btn-primary {
            background: var(--medical-blue);
            color: white;
            padding: 1.1rem 2.2rem;
            border-radius: 14px;
            font-weight: 700;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-primary:hover {
            background: #163d66;
            transform: scale(1.03);
            box-shadow: 0 10px 20px rgba(10, 37, 64, 0.1);
        }

        .modal-bg {
            background: rgba(10, 37, 64, 0.45);
            backdrop-filter: blur(10px);
        }

        .active-filter {
            background: var(--medical-blue);
            color: white !important;
        }

        .stat-card {
            background: white;
            padding: 2.5rem;
            border-radius: 32px;
            border: 1px solid rgba(0,0,0,0.03);
        }

        .workflow-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -25%;
            width: 50%;
            height: 2px;
            background: dashed #e2e8f0;
            z-index: -1;
        }

        @media (max-width: 768px) {
            .workflow-step::after { display: none; }
        }

        .hover-lift { transition: transform 0.3s ease; }
        .hover-lift:hover { transform: translateY(-5px); }
        
        /* Custom Scrollbar for Legal Text */
        .legal-scroll::-webkit-scrollbar { width: 6px; }
        .legal-scroll::-webkit-scrollbar-track { background: transparent; }
        .legal-scroll::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 10px; }
    