.rule-list {
  padding-left: 20px;
  margin: 10px 0 0;
}

.rule-list li {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
  list-style-type: disc;
}

/* Reuse existing offer-box styles */
.offer-box {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.offer-box:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  background-color: #f9f9f9;
}

.offer-box span.glyphicon {
  font-size: 28px;
  color: #d9534f;
  margin-right: 15px;
  flex-shrink: 0;
}

.offer-content h5 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

/* Fade-in animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nearby-box {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.nearby-box:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
}

.nearby-box h5 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.nearby-box h5 .glyphicon {
  margin-right: 8px;
  color: #337ab7;
}

.nearby-list {
  padding-left: 20px;
  margin: 0;
}

.nearby-list li {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
  list-style-type: disc;
}

.facility-box {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.facility-box:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
}

.facility-box h5 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.facility-box h5 .glyphicon {
  margin-right: 8px;
  color: #337ab7;
}

.facility-list {
  padding-left: 20px;
  margin: 0;
}

.facility-list li {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
  list-style-type: disc;
}




/*Image gallery for showing the images*/
#gallery {
  padding-top: 40px;
  @media screen and (min-width: 991px) {
    padding: 60px 30px 0 30px;
  }
}

.img-wrapper {
  position: relative;
  margin-top: 15px;
  img {
    width: 100%;
  }
}
.img-overlay {
  background: rgba(0,0,0,0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  i {
    color: #fff;
    font-size: 3em;
  }
}

#overlay {
  background: rgba(0,0,0,0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  // Removes blue highlight
  -webkit-user-select: none;
  -moz-user-select: none;    
  -ms-user-select: none; 
  user-select: none; 
  img {
    margin: 0;
    width: 80%;
    height: auto;
    object-fit: contain;
    padding: 5%;
    @media screen and (min-width:768px) {
        width: 60%;
    }
    @media screen and (min-width:1200px) {
        width: 50%;
    }
  }
}

#nextButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  &:hover {
    opacity: 0.7;
  }
  @media screen and (min-width:768px) {
    font-size: 3em;
  }
}

#prevButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  &:hover {
    opacity: 0.7;
  }
  @media screen and (min-width:768px) {
    font-size: 3em;
  }
}

#exitButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  position: absolute;
  top: 15px;
  right: 15px;
  &:hover {
    opacity: 0.7;
  }
  @media screen and (min-width:768px) {
    font-size: 3em;
  }
}




.policy-box {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.policy-box:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
}

.policy-box h5 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.policy-box h5 .glyphicon {
  margin-right: 8px;
  color: #337ab7;
}

.policy-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}

.policy-list {
  padding-left: 20px;
  margin: 0;
}

.policy-list li {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
  list-style-type: disc;
}