:root {
            --primary-blue: #0a5a8c;
            --secondary-teal: #1a9b8c;
            --accent-green: #6cbb3c;
            --light-bg: #f8f9fa;
            --dark-text: #2c3e50;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .hero-gradient {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-teal) 100%);
        }
        .navbar-brand img {
            max-height: 60px;
        }
        .hero-section {
            padding-top: 100px;
            padding-bottom: 80px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero-section h1 {
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .btn-hospital {
            background-color: var(--accent-green);
            border-color: var(--accent-green);
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-hospital:hover {
            background-color: #5aa02c;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .section-title {
            color: var(--primary-blue);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2.5rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 4px;
            background-color: var(--accent-green);
        }
        .service-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .service-icon {
            font-size: 2.5rem;
            color: var(--secondary-teal);
            margin-bottom: 1rem;
        }
        .stats-box {
            background-color: var(--primary-blue);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .stats-box:hover {
            background-color: var(--secondary-teal);
            transform: scale(1.05);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .doctor-card {
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        .doctor-card:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .doctor-img {
            height: 280px;
            object-fit: cover;
            object-position: top;
        }
        .news-card {
            border-left: 4px solid var(--accent-green);
            transition: all 0.3s ease;
        }
        .news-card:hover {
            background-color: rgba(10, 90, 140, 0.03);
            transform: translateX(5px);
        }
        .footer {
            background-color: #1a2a3a;
            color: #ddd;
            padding-top: 3rem;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }
        .contact-info i {
            width: 30px;
            color: var(--secondary-teal);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(26, 155, 140, 0.1);
            color: var(--primary-blue);
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding-top: 80px;
                padding-bottom: 60px;
                text-align: center;
            }
            .stats-number {
                font-size: 2.5rem;
            }
            .section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
        .breadcrumb-item a {
            color: var(--primary-blue);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--secondary-teal);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--primary-blue);
        }
