body {
  font-family: 'Arial', sans-serif;
  background-color: #000000;
  color: #333;
}

.section-image {
  position: relative;
  overflow: hidden;
}

.section-image img {
  width: 100%;
  height: auto;
}

.section-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
}

/* Стили для слайдеров */
.carousel-item img {
  width: 100%;
  height: auto;
}

.carousel-control-prev, .carousel-control-next {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Стили для формы */
.section-form {
  padding: 50px 0;
}

.form-group {
  margin-bottom: 20px;
}

/* ...  Другие стили  ... */
main {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    flex-basis: 1400px;
    width: 860px;
    margin: auto;
}
.carousel-control-next, .carousel-control-prev {
width: 5%;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
  margin: 20px auto;
  color: #ffffff;
}

.form-group label {
  margin-bottom: 5px;
}

.form-control {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-sizing: border-box;
}

.success-message, .error-message {
  display: none;
}

.success-message.show, .error-message.show {
  display: block;
  color: green;
}

.error-message.show {
  color: red;
}
.btn-primary {
    color: #fff;
    background-color: #212323;
    border-color: #000201;
}
.btn-primary:hover {
    color: #fff;
    background-color: #438b77;
    border-color: #c5cfdb;
}