@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        html {
            scroll-behavior: smooth;
        }
        .hero-bg {
            background: linear-gradient(rgba(0, 86, 166, 0.85), rgba(26, 156, 216, 0.9)), url('https://images.unsplash.com/photo-1516549655669-df58f8ec9f91?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
        }
        .flink {
            padding: 8px 16px;
            border-radius: 6px;
            background-color: #f8f9fa;
            color: #495057;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            margin: 4px;
            border: 1px solid #dee2e6;
            transition: all 0.2s;
        }
        .flink:hover {
            background-color: #e9ecef;
            color: #0056a6;
            border-color: #bdc6d0;
            transform: scale(1.05);
        }
        .section-padding {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        .nav-scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .treatment-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: #e6f2ff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: #0056a6;
            line-height: 1;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding-top: 3rem;
                padding-bottom: 3rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
