  .branchhospital-section {
    background-color: #f3f4f6;
  }

  .branchhospital-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 400;
  }

  .hospital-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
  }

  .hospital-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  }

  .hospital-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }

  .hospital-card:hover img {
    transform: scale(1.05);
  }

  .branchhospital-name {
    font-size: 1rem;
    font-weight: 600;
    color: #34495e;
    margin-top: 10px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .hospital-card img {
      height: 150px;
    }
  }

  @media (max-width: 576px) {
    .hospital-card img {
      height: 140px;
    }

    .branchhospital-name {
      font-size: 0.9rem;
    }
  }