        :root {
            --primary-color: #005792;
            --secondary-color: #00BBF0;
            --accent-color: #FDB44B;
            --light-bg: #F7F9FC;
            --dark-text: #2D3748;
            --light-text: #718096;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
           /* color: var(--dark-text);*/
        }
        
        .hospital-section {
            background: linear-gradient(135deg, #F7F9FC 0%, #FFFFFF 100%);
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .hospital-img-container {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 1;
            margin-bottom: 1.5rem;
        }
        
        .hospital-img-container:hover {
            transform: perspective(1000px) rotateY(0deg);
            box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
        }
        
        .hospital-img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .hospital-img-container:hover .hospital-img {
            transform: scale(1.05);
        }
        
        .img-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 87, 146, 0.85));
            padding: 1.5rem;
            color: white;
            z-index: 2;
        }
        
        .img-caption {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 1rem;
            border-radius: 0 0 16px 16px;
        }
        
        .highlights-container {
            margin-top: 2rem;
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .overlay-highlights {
            display: flex;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        
        .overlay-highlight-item {
            flex: 1;
            background: var(--light-bg);
            border-radius: 8px;
            padding: 1.5rem;
            border-left: 3px solid var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .overlay-highlight-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .overlay-highlight-icon {
            color: var(--accent-color);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .overlay-highlight-text {
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .overlay-highlight-text strong {
            color: var(--primary-color);
            font-weight: 600;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .hospital-content {
            padding-left: 3rem;
            position: relative;
            z-index: 1;
        }
        
        .section-title {
            color: var(--primary-color);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            position: relative;
            line-height: 1.2;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 70px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 3px;
        }
        
        .intro-text {
            font-size: 1rem;
            line-height: 1.8;
            /*color: var(--light-text);*/
            margin-bottom: 2rem;
        }
        
        .specialties-list {
            margin: 1.5rem 0;
        }
        
        .specialty-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.2rem;
            padding: 1.2rem;
            border-radius: 10px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        
        .specialty-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            border-left: 4px solid var(--accent-color);
        }
        
        .specialty-icon {
            color: var(--secondary-color);
            margin-right: 1.2rem;
            font-size: 1.3rem;
            min-width: 35px;
            text-align: center;
            padding-top: 3px;
        }
        
        .specialty-title {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.4rem;
            font-size: 1rem;
        }
        
        .specialty-desc {
          /*  color: var(--light-text);*/
            line-height: 1.6;
            font-size: 0.9rem;
        }
        
        .stats-container {
            display: flex;
            justify-content: space-between;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
            padding: 1rem;
            border-radius: 8px;
            background: rgba(0, 183, 240, 0.1);
            flex: 1;
            min-width: 120px;
            margin: 0.3rem;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.3rem;
        }
        
        .stat-label {
            font-size: 0.8rem;
            /*color: var(--light-text);*/
            font-weight: 500;
        }
        
        @media (max-width: 1199px) {
            .hospital-content {
                padding-left: 2rem;
            }
        }
        
        @media (max-width: 992px) {
           /* .hospital-content {
                padding-left: 0;
                padding-top: 2rem;
            }*/
            
            .section-title {
                font-size: 2rem;
            }
            
            .hospital-img-container {
                transform: none;
                margin-bottom: 1rem;
            }
            
            .overlay-highlights {
                flex-direction: column;
                gap: 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .hospital-section {
                padding: 3rem 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .intro-text {
                font-size: 0.95rem;
            }
            
            .specialty-item {
                padding: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .section-title {
                font-size: 1.6rem;
            }
            
            .img-overlay {
                padding: 1rem;
            }
            
            .overlay-highlight-item {
                padding: 1rem;
            }
        }