  /* Breadcrumbs */
        .breadcrumb {
            font-size: 0.9rem;
        }
        .breadcrumb-item a {
            font-family: Inter Tight;
            font-weight: 400;
            font-size: 15px;
            line-height: 160%;
            letter-spacing: 0px;
            text-decoration: none;
            color: #000;
        }
        .breadcrumb-item.active {
            font-family: Inter Tight;
            font-weight: 400;
            font-size: 15px;
            line-height: 160%;
            letter-spacing: 0px;
            text-decoration: none;
            color: #053862;
            font-weight: 600;
        }

        /* Image Gallery */
        .image-gallery {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 8px;
            border-radius: 12px;
            overflow: hidden;
            height: 350px;
        }
        .main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .thumbnail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 8px;
        }
        .thumbnail-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Page Tabs */
        .page-tabs .nav-link {
            color: #6c757d;
            font-weight: 500;
            border: none;
            border-bottom: 3px solid transparent;
        }
        .page-tabs .nav-link.active {
            color: #0d6efd;
            border-bottom-color: #0d6efd;
            background-color: transparent;
        }

        /* Hospital Info */
        .hospital-title-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .rating-summary-card {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 1rem;
            padding: 1rem;
            text-align: center;
        }
        .rating-item .value {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0d2a4f;
        }
         .rating-item .stars { color: #ffc107; }
        .rating-item .label {
            font-size: 0.8rem;
            color: #6c757d;
        }
        .hospital-contact-info {
            list-style: none;
            padding: 0;
            font-size: 0.9rem;
            color: #6c757d;
        }
         .hospital-contact-info li { margin-bottom: 0.5rem; }
         .hospital-contact-info i { color: #0d6efd; margin-right: 0.75rem;}

        /* Facility Services */
        .facility-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 1rem;
        }
        .facility-item {
            background-color: #f8f9fa;
            padding: 0.75rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #495057;
        }
        .facility-item i { color: #0d6efd; margin-right: 0.75rem; }

        /* Accordion Styles (Procedures & Staff) */
        .accordion-button {
            font-weight: 700;
            color: #0d2a4f;
        }
        .accordion-button:not(.collapsed) {
            background-color: #e7f1ff;
            box-shadow: none;
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0,0,0,.125);
        }
        .procedure-list {
            list-style: none;
            padding: 0;
            column-count: 3;
            font-size: 0.9rem;
        }
         .procedure-list li { margin-bottom: 0.5rem; }

        /* Medical Staff */
        .staff-member {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid #e9ecef;
        }
        .staff-member:last-child { border-bottom: none; }
        .staff-member img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }
        .staff-info h6 { margin-bottom: 0.1rem; font-size: 1rem; }
        .staff-info p { margin-bottom: 0; font-size: 0.85rem; color: #6c757d; }

        /* Review Section */
        .review-summary { display: flex; gap: 1.5rem; }
        .review-score { text-align: center; }
        .review-score .score-value {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 5px solid #198754;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            color: #0d2a4f;
        }
        .review-score .stars { color: #ffc107; }
        .review-breakdown { flex-grow: 1; }
        .review-bar { display: flex; align-items: center; gap: 0.75rem; font-size: 0.85rem; }
        .progress { height: 8px; flex-grow: 1; }

        /* Sidebar */
        .sidebar-card { position: sticky; top: 100px; }
        .map-placeholder {
            height: 150px;
            background: url('https://i.imgur.com/gX33k5w.png') center center/cover; /* Placeholder for map */
            border-radius: 8px;
        }
        .sidebar-card .btn-primary {
             background-color: #0d2a4f; border-color: #0d2a4f;
        }

        /* Responsive */
        @media (max-width: 767.98px) {
            .procedure-list { column-count: 1; }
            .image-gallery { display: block; height: auto; }
            .thumbnail-grid { display: none; } /* Hide thumbnails on mobile */
        }