* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #333333;
  background-color: #FFFFFF;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Merriweather", serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }
}
.section--light {
  background-color: #F5F1E9;
}
.section__title {
  text-align: center;
  font-size: 2.5rem;
  color: #5B7566;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .section__title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn--primary {
  background-color: #2D4356;
  color: #FFFFFF;
}
.btn--primary:hover {
  background-color: #3b5871;
  transform: translateY(-2px);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #7b9c8a;
  color: #FFFFFF;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("https://gloss.ua/img/forall/u/639/6/171362584_244032004108284_4855357077025261443_n.jpg") center/cover no-repeat;
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.hero__title {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
  }
}
.hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 1.2rem;
  }
}

.services__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .services__list {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.card__img-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.card:hover .card__img {
  transform: scale(1.05);
}
.card__title {
  padding: 20px;
  text-align: center;
  font-size: 1.25rem;
  color: #5B7566;
}

.instruction__steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .instruction__steps {
    flex-direction: column;
    gap: 15px;
  }
}
.instruction__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 250px;
}
.instruction__icon {
  width: 60px;
  height: 60px;
  background-color: #5B7566;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 15px;
}
.instruction__text {
  font-weight: 600;
}
.instruction__arrow {
  font-size: 2rem;
  color: #5B7566;
}
@media (max-width: 768px) {
  .instruction__arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
}

.booking__inner {
  max-width: 600px;
  margin: 0 auto;
  background-color: #F5F1E9;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}
@media (max-width: 480px) {
  .booking__inner {
    padding: 20px;
  }
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 480px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #5B7566;
}
.form__input {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.form__input:focus {
  border-color: #2D4356;
}
.form__submit {
  margin-top: 10px;
  width: 100%;
}

.features__list {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 768px) {
  .features__list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.features__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
}
.features__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.features__icon svg {
  width: 48px;
  height: 48px;
  stroke: #5B7566;
}
.features__text {
  font-weight: 600;
  color: #2D4356;
}