
    body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 20px;
  text-align: center;
}

/* Push content below fixed top bar + navbar */
.facility-title {
  margin-top: 100px;   /* Fix hidden title issue */
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}

/* Main container spacing */
.facility-container {
  padding: 20px;
  text-align: center;
}

/* Facility image grid */
/* Images row */
.facility-images {
  display: flex;
  flex-wrap: nowrap;        /* Keep all images in one row */
  overflow-x: auto;         /* Horizontal scrolling if screen small */
  justify-content: flex-start;
  gap: 20px;                /* Space between images */
  padding: 20px 10px;
  box-sizing: border-box;
}

/* Each image box */
.facility-item {
  flex: 0 0 auto;           /* Prevent shrinking */
  text-align: center;
}

/* Image – SAME HEIGHT – clean fit – NO OVERLAP */
.facility-item img {
  height: 250px;            /* All images same height */
  width: auto;              /* Width adjusts automatically */
  object-fit: cover;        /* Prevent distortion */
  border-radius: 10px;
  display: block;
}
.facility-item p {
  font-size: 18px;
  font-weight: 600;
}

/* Facility list styling */
.facility-list {
  margin-top: 40px;
  list-style-type: disc;
  padding-left: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-size: 18px;
}