:root {
            --rcc-blue: #0a4275;
            --rcc-teal: #17a2b8;
            --rcc-green: #28a745;
            --rcc-light: #f8f9fa;
            --rcc-dark: #343a40;
            --rcc-accent: #e63946;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--rcc-blue) !important;
        }
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--rcc-accent) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 66, 117, 0.85), rgba(10, 66, 117, 0.9)), url('https://images.unsplash.com/photo-1516549655669-df6654e435f6?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0 80px;
            margin-top: 76px;
        }
        .hero-title {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .section-title {
            color: var(--rcc-blue);
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--rcc-teal);
            border-radius: 2px;
        }
        .section-title.center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .service-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s ease;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .service-icon {
            font-size: 2.5rem;
            color: var(--rcc-teal);
            margin-bottom: 1rem;
        }
        .stats-counter {
            background: linear-gradient(135deg, var(--rcc-blue), #0d5699);
            color: white;
            padding: 60px 0;
        }
        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            color: white;
        }
        .team-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .team-img {
            height: 280px;
            object-fit: cover;
        }
        .department-box {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            height: 100%;
            border-left: 5px solid var(--rcc-teal);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .department-box:hover {
            border-left-color: var(--rcc-accent);
            transform: translateX(5px);
        }
        .contact-info-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            height: 100%;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }
        .contact-icon {
            font-size: 2.5rem;
            color: var(--rcc-blue);
            margin-bottom: 1rem;
        }
        .footer {
            background-color: var(--rcc-dark);
            color: #ddd;
            padding-top: 3rem;
        }
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            color: #ddd;
            padding: 8px 15px;
            border-radius: 5px;
            margin: 5px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: var(--rcc-teal);
            color: white;
            transform: translateY(-3px);
        }
        .btn-rcc {
            background-color: var(--rcc-teal);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-rcc:hover {
            background-color: var(--rcc-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .btn-rcc-accent {
            background-color: var(--rcc-accent);
            color: white;
        }
        .btn-rcc-accent:hover {
            background-color: #c1121f;
        }
        .emergency-banner {
            background: linear-gradient(90deg, #c1121f, #e63946);
            color: white;
            padding: 15px 0;
            position: relative;
            overflow: hidden;
        }
        .emergency-blink {
            animation: blink 2s infinite;
        }
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(10, 66, 117, 0.1);
            color: var(--rcc-blue);
            font-weight: 600;
        }
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            height: 100%;
            border-top: 4px solid var(--rcc-teal);
        }
        .testimonial-text {
            font-style: italic;
            color: #555;
        }
        .patient-name {
            color: var(--rcc-blue);
            font-weight: 600;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            .counter-number {
                font-size: 2.2rem;
            }
            .navbar-collapse {
                background: white;
                padding: 1rem;
                border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                margin-top: 10px;
            }
        }
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .breadcrumb {
            background-color: transparent;
            padding: 0;
        }
        .breadcrumb-item a {
            color: var(--rcc-teal);
            text-decoration: none;
        }
        .publication-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        .publication-list li:last-child {
            border-bottom: none;
        }
