:root {
            --primary-blue: #0056b3;
            --secondary-blue: #0066cc;
            --accent-gold: #d4af37;
            --light-blue: #e6f2ff;
            --dark-gray: #333333;
            --medium-gray: #666666;
            --light-gray: #f8f9fa;
            --emergency-red: #dc3545;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark-gray);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--primary-blue);
        }
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
        }
        .navbar-brand span {
            color: var(--accent-gold);
        }
        .nav-link {
            font-weight: 600;
            color: var(--dark-gray) !important;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-blue) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 86, 179, 0.85), rgba(0, 102, 204, 0.9)), url('https://images.unsplash.com/photo-1586773860418-dc22f8b874bc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            position: relative;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: var(--secondary-blue);
            border-color: var(--secondary-blue);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .btn-emergency {
            background-color: var(--emergency-red);
            border-color: var(--emergency-red);
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-emergency:hover {
            background-color: #c82333;
            border-color: #bd2130;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
        }
        .section-padding {
            padding: 100px 0;
        }
        .section-title {
            margin-bottom: 60px;
            position: relative;
        }
        .section-title h2 {
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-gold);
        }
        .service-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            border-top: 5px solid var(--primary-blue);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .service-icon {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        .doctor-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        .doctor-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .doctor-img {
            height: 300px;
            object-fit: cover;
            width: 100%;
        }
        .testimonial-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        .footer {
            background-color: var(--dark-gray);
            color: white;
            padding: 80px 0 30px;
        }
        .footer h5 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-gold);
        }
        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            margin-top: 50px;
            text-align: center;
            color: #aaaaaa;
            font-size: 0.9rem;
        }
        .contact-info {
            background-color: var(--light-blue);
            padding: 60px 0;
        }
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        .contact-icon {
            background-color: var(--primary-blue);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.2rem;
        }
        .stats-counter {
            text-align: center;
            padding: 30px 20px;
            background-color: var(--light-blue);
            border-radius: 10px;
        }
        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }
        .emergency-banner {
            background-color: var(--emergency-red);
            color: white;
            padding: 20px 0;
            text-align: center;
            font-weight: 600;
            font-size: 1.2rem;
        }
        .flink {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.1);
            color: #cccccc;
            padding: 8px 15px;
            margin: 5px;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            transform: translateY(-3px);
        }
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 100%;
        }
        .accordion-button:not(.collapsed) {
            background-color: var(--light-blue);
            color: var(--primary-blue);
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 80px 0;
            }
            .section-padding {
                padding: 60px 0;
            }
            .section-title h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 576px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
            .counter-number {
                font-size: 2.5rem;
            }
        }
