* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

.section-hostel {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 70px;
   background: url("../images/Rectangle\ 319\ \(5\).png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  gap: 100px;
}

/* LEFT NORMAL IMAGE */
.image-left img {
  width: 600px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* RIGHT CONTENT BOX */
.hostel-content {
  background: rgba(255, 255, 255, 0.85);
  padding: 40px 45px;
  border-radius: 20px;
  max-width: 600px;
  backdrop-filter: blur(4px);
}

.hostel-content h2 {
  color: #1c3f94;
  font-family: Merriweather;
  font-weight: 700;
  font-size: 36px;
}

.hostel-content h2 span {
  color: #e41d23;
}

.hostel-content p {
  margin: 18px 0;
  font-size: 16px;
  line-height: 1.7;
  color: #1c3f94;
  border-left: 3px solid #e41d23;
  padding-left: 12px;
}

/* BUTTONS */
.btn-row {
  margin-top: 25px;
  display: flex;
  gap: 20px;
}

.btn-apply {
  background: #1c3f94;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.btn-about {
  background: transparent;
  border: 2px solid #e41d23;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: #e41d23;
  transition: 0.3s;
}

/* ======================================================
      RESPONSIVE DESIGN
   ====================================================== */

/* ---------- TABLETS (max-width: 1024px) ---------- */


/* ---------- MOBILE LARGE (max-width: 768px) ---------- */
@media (max-width: 1300px) {
  .section-hostel {
    flex-direction: column;
    padding: 50px 30px;
    gap: 50px;
  }

  .image-left img {
    width: 100%;
    max-width: 350px;
  }

  .hostel-content {
    max-width: 100%;
    padding: 30px;
  }

  .btn-row {
    flex-direction: column;
    width: 100%;
  }

  .btn-row button {
    width: 100%;
  }
}

/* ---------- SMALL MOBILE (max-width: 480px) ---------- */
@media (max-width: 480px) {
  .hostel-content h2 {
    font-size: 28px;
  }

  .hostel-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .image-left img {
    width: 100%;
  }

  .section-hostel {
    padding: 40px 20px;
  }
}
