
.hostel-section {
  background: #424a52;
  padding: 80px 6%;
  color: #fff;
}

.hostel-container {
  max-width: 1100px;
  margin: auto;
  
  display: flex;
  align-items: center; /* ✅ vertical alignment */
  justify-content: center;
  gap: 50px;
}

/* Logo */
.hostel-logo img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  padding: 15px;
}

/* Text */
.hostel-text {
  max-width: 600px;
}

.hostel-text h2 {
    color:#fff;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hostel-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #f1f1f1;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .hostel-container {
    flex-direction: column; /* stack on mobile */
    text-align: center;
  }

  .hostel-logo img {
    width: 160px;
    height: 160px;
  }

  .hostel-text h2 {
    font-size: 26px;
  }

  .hostel-text p {
    font-size: 14px;
  }
}

