:root {
            --primary-blue: #0056A4;
            --primary-green: #008577;
            --accent-gold: #C19A5F;
            --light-gray: #f8f9fa;
            --dark-gray: #343a40;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        h1, h2, h3, h4, h5 {
            color: var(--primary-blue);
            font-weight: 700;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--accent-gold) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 84, 164, 0.85), rgba(0, 133, 119, 0.8)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
        }
        .hero-section h1 {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--primary-green);
        }
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: rgba(0, 133, 119, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary-green);
            font-size: 1.8rem;
        }
        .bg-light-custom {
            background-color: var(--light-gray);
        }
        .btn-primary-custom {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            color: white;
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: #004085;
            border-color: #004085;
            transform: scale(1.05);
        }
        .btn-secondary-custom {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            color: white;
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .btn-secondary-custom:hover {
            background-color: #00665a;
            border-color: #00665a;
            transform: scale(1.05);
        }
        footer {
            background-color: var(--dark-gray);
            color: white;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: var(--accent-gold);
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 5px;
            transition: all 0.3s ease;
            color: #ddd;
        }
        .flink:hover {
            background-color: var(--primary-green);
            color: white;
            transform: translateY(-3px);
        }
        .department-item {
            border-left: 4px solid var(--primary-green);
            padding-left: 15px;
            margin-bottom: 20px;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: var(--primary-green);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--primary-blue);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--primary-blue);
        }
        .stats-box {
            text-align: center;
            padding: 30px 15px;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .stats-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1;
            margin-bottom: 10px;
        }
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .doctor-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        .news-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
                text-align: center;
            }
            .section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
