* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body, html {
  height: 100%;
  margin: 0;
  overflow-x: hidden; /* fallback or bottom half color */
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 88px; /* match navbar height */
  height: calc(98vh - 88px);
  left: 0;
  width: 100%;
  background: url('../assets/images/room-banner3.webp') center center no-repeat;
  background-size: cover; /* ensures it fills the area without distortion */
  background-attachment: scroll; /* prevents weird fixed stretching */
  z-index: -1;
}

.policy-container {
  background-color: #fff;
  margin-bottom: 0;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.property-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 25px 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  max-width: 100%;
}

.property-card h2 {
  color: #202020;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  border-bottom: 2px solid orange;
  display: inline-block;
  padding-bottom: 5px;
}

.checkin-checkout {
  display: flex;
  gap: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
}

.property-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 20px 0;
}

.all-rules h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgb(0, 0, 0);
  margin: 20px 0 10px;
}

.all-rules ul {
  list-style: disc inside;
  margin: 0 0 15px;
  padding-left: 15px;
}

.all-rules ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .checkin-checkout {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
