 h1 {
        white-space: nowrap;
    }
    .itinerary-section {
  padding: 60px 0;
}

.itinerary-section h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.itinerary-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.itinerary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.itinerary-day {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  border-left: 4px solid #4CAF50;
  padding-left: 12px;
}

    .spacing-after {
      margin-bottom: 20px;
    }
    .conul li {
      margin-bottom: 10px; /* space between list items */
    }
    
    .conul li:last-child {
      margin-bottom: 0; /* no extra space after last item */
    }
   .retreat-special {
  padding: 60px 0;
}

.special-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px 40px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.special-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.special-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.special-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.booking-card {
  text-align: center;
}

.booking-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
}

.booking-list li {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: #333;
}

.booking-list b {
  color: #222;
}

.booking-list span {
  color: #4CAF50;
  font-weight: 600;
}

.book-btn {
  display: inline-block;
  background: #87e5da;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background: #64b5ac;
}

.note {
  margin-top: 20px;
  font-size: 1rem;
  color: #555;
} 
.container.my-4 b {
    display: block;       /* ensures margin works like a block element */
    margin: 15px 0;       /* adjust top/bottom space as needed */
}