.booking-container {
  max-width: 2024px;
  margin: 0 auto;
}

.booking-item {
  border-bottom: 1px solid #E4E7EC;
  margin-bottom: 10px;
}

.booking-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	padding: 10px;
	font-family: Inter;
	font-size: 1.3em;
	font-weight: 500;
	color: #06253B;
}

.booking-description {
  display: none;
  padding: 10px;
font-family: Inter;
  color: #3D5261;
  font-size: 1.0em;
  line-height: 1.6;
}

.booking-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 1.2em;
  color: #99a2b3;
  border: 2px solid #E4E7EC;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.booking-icon:hover {
  border: 2px solid #333;
  color: #333;
}

.booking-item.active .booking-description {
  display: block;
}

.booking-item.active .booking-icon {
  content: '-';
  color: #99a2b3;
}
.booking-buttons {
	padding-top: 15px;
	padding-bottom: 20px;
}
.booking-button {
	border-radius: 4px;
	background-color: #1765A1;
	font-size: 15px;
	font-family: Inter;
	color: #ffffff;
	font-weight: 500;
	padding: 8px 12px;
	margin: 25px 0px;

}
.booking-img {
	width: 32px;
	margin-right: 10px;
}
