.image-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 3 / 1; /* Maintains 2:1 ratio */
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  
}

.title-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.5); /* semi-transparent white */
  color: #000;
  padding: 1.2rem 2rem;
  border-radius: 7px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
  font-size: 2rem;
  white-space: nowrap; /* Prevent text wrapping */
}

.list-title {
  width: 100%;
  background-color: #f9f9f9;
  padding: 5px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  color: #333;
  margin: 20px 0;
}

.note {
  width: 100%;
  background-color: #f9f9f9;
  padding: 5px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: darkmagenta;
  margin: 20px 0;
}

.pricing-list {
    overflow-x: auto;        /* Enable horizontal scroll */
    overflow-y:hidden;
}

.answer-section {
  margin-bottom: 20px;
}

.answer-section h2 {
  font-size: 20px;
  color: #6f42c1;
  margin-bottom: 5px;
}

.answer-section ul {
  list-style: square;
  padding-left: 20px;
}

.tip {
  background-color: #f9e2f4;
  border-left: 5px solid #d63384;
  padding: 10px;
  margin-top: 10px;
}

.message {
  background-color: #ffe4ec;
  border: 2px dashed #d63384;
  padding: 30px;
  border-radius: 12px;
  display: inline-block;
  max-width: 400px;
}

.message h1 {
  color: #c2185b;
  font-size: 26px;
}

.message p {
  font-size: 18px;
  margin-top: 10px;
}

.price-note {
  font-size: 16px;
  color: #777;
  margin-top: 10px;
}

.booking-box {
  max-width: 600px;
  margin: auto;
  background-color: #fce4ec;
  border-left: 6px solid #e91e63;
  padding: 5px;
  border-radius: 10px;
}


h1 {
  color: #ad1457;
  margin-bottom: 10px;
}

p, li {
  font-size: 18px;
  line-height: 1.6;
}

.highlight {
  font-weight: bold;
  color: #d81b60;
}

address {
  font-style: normal;
  margin-top: 10px;
}

.space20-div {
  margin-bottom: 20px;
}

.space40-div {
  margin-bottom: 40px;
}

.space60-div {
  margin-bottom: 60px;
}

.space80-div {
  margin-bottom: 80px;
}

@media (max-width: 600px) {
  .title-box {
    font-size: 1.4rem;
    padding: 1rem 1.5rem;
  }
}