@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');
        body {
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
        }
        .heading-font {
            font-family: 'Poppins', sans-serif;
        }
        .flink {
            display: inline-block;
            transition: all 0.3s ease;
            color: #2d3748;
            padding: 8px 12px;
            border-radius: 6px;
            text-decoration: none;
        }
        .flink:hover {
            background-color: #f7fafc;
            color: #3182ce;
            transform: translateY(-2px);
        }
        .hospital-green {
            background-color: #0a5c36;
        }
        .hospital-light-green {
            background-color: #e6f4ea;
        }
        .medical-blue {
            color: #1a365d;
        }
        .gradient-bg {
            background: linear-gradient(135deg, #0a5c36 0%, #1a365d 100%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: #0a5c36;
            left: 0;
            bottom: -5px;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        @media (max-width: 768px) {
            .mobile-menu {
                display: none;
            }
            .mobile-menu.active {
                display: block;
            }
        }
