:root {
            --hospital-blue: #0056b3;
            --hospital-light-blue: #e8f4ff;
            --hospital-gold: #daa520;
            --hospital-dark: #2c3e50;
            --hospital-gray: #f8f9fa;
            --accent-red: #c8102e;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Georgia', serif;
            font-weight: 600;
            color: var(--hospital-dark);
        }
        a {
            color: var(--hospital-blue);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--accent-red);
        }
        .flink {
            background-color: var(--hospital-gray);
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 12px 20px;
            margin: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--hospital-dark);
            font-weight: 500;
            transition: all 0.3s;
            min-height: 60px;
        }
        .flink:hover {
            background-color: var(--hospital-light-blue);
            border-color: var(--hospital-blue);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,86,179,0.1);
            color: var(--hospital-blue);
        }
        .flink i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 86, 179, 0.85), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1586773860418-dc22f8b874bc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            color: white;
            padding: 120px 0;
            position: relative;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 4px;
            background: var(--hospital-gold);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .service-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,86,179,0.15);
        }
        .service-card .card-body {
            padding: 2rem;
        }
        .icon-wrapper {
            width: 80px;
            height: 80px;
            background: var(--hospital-light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--hospital-blue);
            font-size: 2rem;
        }
        .btn-hospital {
            background-color: var(--hospital-blue);
            border-color: var(--hospital-blue);
            color: white;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-hospital:hover {
            background-color: var(--accent-red);
            border-color: var(--accent-red);
            color: white;
            transform: scale(1.05);
        }
        .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
            background-color: var(--hospital-blue);
        }
        footer {
            background-color: var(--hospital-dark);
            color: #ddd;
        }
        footer a {
            color: #ddd;
        }
        footer a:hover {
            color: white;
        }
        .footer-bottom {
            background-color: rgba(0,0,0,0.2);
            padding: 20px 0;
            font-size: 0.9rem;
        }
        .emergency-banner {
            background: linear-gradient(to right, var(--accent-red), #e63946);
            color: white;
            padding: 15px 0;
            font-weight: 700;
            font-size: 1.2rem;
        }
        .emergency-banner a {
            color: white;
            text-decoration: underline;
        }
        .sticky-top {
            backdrop-filter: blur(10px);
            background-color: rgba(255,255,255,0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .map-container iframe {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .team-member img {
            border-radius: 50%;
            width: 150px;
            height: 150px;
            object-fit: cover;
            border: 5px solid var(--hospital-light-blue);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--hospital-blue);
            line-height: 1;
        }
        .breadcrumb {
            background-color: transparent;
            padding: 0;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
                text-align: center;
            }
            .display-4 {
                font-size: 2.5rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .flink {
                width: 45%;
                margin: 5px;
            }
        }
