* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .hero-bg {
            background: linear-gradient(rgba(10, 54, 88, 0.85), rgba(10, 54, 88, 0.9)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2053&q=80') center/cover no-repeat;
        }
        .section-padding {
            padding: 5rem 0;
        }
        .flink {
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4b5563;
            background-color: white;
            text-decoration: none;
        }
        .flink:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            border-color: #1e6ea7;
            color: #1e6ea7;
        }
        .service-card, .doctor-card, .news-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .service-card:hover, .doctor-card:hover, .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .btn-primary {
            background-color: #0a3658;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 0.375rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            border: 2px solid #0a3658;
        }
        .btn-primary:hover {
            background-color: transparent;
            color: #0a3658;
        }
        .btn-secondary {
            background-color: #c5a028;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 0.375rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            border: 2px solid #c5a028;
        }
        .btn-secondary:hover {
            background-color: transparent;
            color: #c5a028;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: #0a3658;
            line-height: 1;
        }
        .nav-link {
            position: relative;
            font-weight: 500;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #c5a028;
            left: 50%;
            bottom: -5px;
            transition: all 0.3s ease;
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
            left: 0;
        }
        input, textarea, select {
            border: 1px solid #d1d5db;
            padding: 0.75rem;
            border-radius: 0.375rem;
            width: 100%;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #1e6ea7;
            box-shadow: 0 0 0 3px rgba(30, 110, 167, 0.1);
        }
        footer a {
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: #c5a028;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 3rem 0;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
