/* Booking Section Styles */

/* Main Booking Section */
.section-booking {
  background-color: rgba(0, 197, 215, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

/* About page booking section specific styles */
.section-booking.bg-white-section {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 32px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.booking-container-about {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
}

.booking-section-about {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.booking-section-about h3 {
  font-size: 24px;
  color: #333;
}

.booking-section-about p {
  font-size: 18px;
  color: #333;
  margin-top: 20px;
}

.booking-section-about p:first-of-type {
  margin-top: 0;
}

.booking-section-about a {
  color: #6633cc;
}

.booking-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.booking-section {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.booking-section h3 {
  font-size: 24px;
  color: white;
}

.booking-section p {
  font-size: 18px;
}

.booking-section p:nth-child(3),
.booking-section p:nth-child(4) {
  margin-top: 20px;
}

.booking-section a {
  color: #00c5d7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-booking {
    min-height: 250px;
    margin-top: 20px;
  }
  
  .booking-section {
    padding: 15px;
  }
  
  .booking-section h3 {
    font-size: 20px;
  }
  
  .booking-section p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .section-booking {
    min-height: 200px;
  }
  
  .booking-section {
    padding: 10px;
  }
  
  .booking-section h3 {
    font-size: 18px;
  }
  
  .booking-section p {
    font-size: 14px;
  }
}