*{
  margin : 0px;
  padding : 0px;
  width : 100%;
  box-sizing: border-box;
}

.box {
  width: 100%;
  min-height: 40vh;          /* thori space */
  padding-top: 10px;         /* image ko upar feel */
}

.box img {
  display: block;            /* removes inline gap */
  max-width: 100%;
  height: auto;              /* 👈 NO SQUEEZE */
  margin: 0 auto;            /* horizontally center */
}
  
  .image-overlay {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.0); /* Black with 50% opacity */
    color: #FFFFFF;
    text-shadow: 0 12px 10px black;
    font-weight: bold;
    font-family: 'Bell MT';
    font-size: 18px;
    padding-top: 15%;
    text-align: center;
  }

  .image-overlay p{
    width: 100%;
    height: 15vh;
  }

.OfferedPlaces{
    width: 100%;
    height: 105%;
    margin-top: 10%;
}

#heading{
  width: 100%;
  height: 10%;
  border-radius: 15px;
  border: 5px solid black;
  box-shadow: 0 12px 10px rgb(53, 53, 53);;
  text-align: center;
  color: rgb(12, 12, 70);
}

.info-container {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
}

/* Each row */
.info-row {
  display: flex;
  align-items: center;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Image column */
.info-img {
  width: 40%;
  height: 250px;
}

.info-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* prevents squeezing */
}

/* Text column */
.info-text {
  width: 60%;
  padding: 25px;
}

.info-text h2 {
  color: rgb(12, 12, 70);
  font-weight: bold;
  margin-bottom: 10px;
}

.info-text p {
  color: #555;
  line-height: 1.6;
}

.info-text p b{
  color: rgb(12, 12, 70);
  font-weight: bold;
  line-height: 1.6;
}

.info-text p a{
  display: block;
  text-align: left;
  color:rgb(12, 12, 70);
  font-size: 15px;
  font-weight: bold;
}

/* Responsive (mobile) */
@media (max-width: 768px) {
  .info-row {
    flex-direction: column;
  }

  .info-img,
  .info-text {
    width: 100%;
  }

  .info-img {
    height: 200px;
  }
}

@media screen and (max-width: 524px) and (min-width: 330px) {

  .box {
    min-height: 40vh;
    padding-top: 8px;
  }

  .box img {
    max-width: 100%;
    height: 40vh;
    margin-top: 5vh;
  }

  .image-overlay {
    height: 50vh;
    padding-left: 0%;
  }
}

@media screen and (min-width: 525px) and (max-width: 768px) {
  .box {
    min-height: 40vh;
    padding-top: 8px;
  }

  .box img {
    max-width: 100%;
    height: auto;
    margin-top: 5vh;
  }

  .image-overlay {
    min-height: 40vh;
  }
}

@media screen and (min-width: 769px) and (max-width: 900px) {
  .box {
    min-height: 40vh;
    padding-top: 8px;
  }

  .box img {
    max-width: 100%;
    height: auto;
    margin-top: 2.5vh;
  }

  .image-overlay {
    min-height: 40vh;
  }
}

@media screen and (min-width: 901px) and (max-width: 1200px) {
  .box {
    min-height: 40vh;
    padding-top: 8px;
  }

  .box img {
    max-width: 100%;
    height: auto;
    margin-top: 5vh;
  }

  .image-overlay {
    min-height: 40vh;
  }
}
