html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Tahoma, Arial, sans-serif;
  font-size: 14px;
  color: #3a9509;
  background-color: #f5f8ef;
  background-image:
    radial-gradient(circle at 25% 20%, rgba(167, 211, 106, 0.16) 0, rgba(167, 211, 106, 0) 40%),
    radial-gradient(circle at 80% 10%, rgba(129, 177, 76, 0.12) 0, rgba(129, 177, 76, 0) 34%),
    linear-gradient(180deg, #f8fbf2 0%, #f3f7ea 100%);
}

a {
  color: #3a9509;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 20px 10px 24px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.9);
  border-left: 1px solid rgba(58, 149, 9, 0.12);
  border-right: 1px solid rgba(58, 149, 9, 0.12);
}

.site-header {
  height: 200px;
  background-image: url("/png/background.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.lang-row {
  padding: 0 28px 18px 0;
  display: flex;
  gap: 18px;
}

.lang-row img {
  width: 18px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 14px 10px 10px;
  font-size: 18px;
}

.content {
  padding: 10px 10px 0;
}

.intro {
  max-width: 860px;
  margin: 12px auto 0;
  line-height: 1.55;
  text-align: center;
}

.highlights {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.highlights li {
  padding: 8px 12px;
  border: 1px solid rgba(58, 149, 9, 0.35);
  background: rgba(255, 255, 255, 0.75);
}

.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  width: 200px;
  text-align: center;
  font-size: 18px;
}

.card img {
  width: 200px;
  height: auto;
  display: block;
  margin-bottom: 8px;
}

.card span {
  display: inline-block;
}

.two-col {
  display: flex;
  gap: 20px;
}

.text-block {
  width: 36%;
  line-height: 1.45;
  text-align: justify;
}

.map-block {
  width: 62%;
}

.map-block img {
  width: 100%;
  height: auto;
  display: block;
}

.content-centered {
  text-align: center;
  line-height: 1.5;
}

.content-centered h1 {
  font-size: 28px;
  margin: 10px 0 12px;
  font-weight: normal;
}

.btn-link {
  display: inline-block;
  border: 1px solid #3a9509;
  padding: 8px 14px;
  margin-top: 4px;
  background: rgba(255, 255, 255, 0.82);
}

.info-box {
  border: 1px solid rgba(58, 149, 9, 0.35);
  padding: 12px;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.75);
  text-align: left;
}

.info-box h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: normal;
}

.info-box ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.5;
}

.rooms-layout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.rooms-photo {
  width: 44%;
}

.rooms-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.rooms-text {
  width: 56%;
  line-height: 1.55;
}

.rooms-text h1 {
  font-size: 28px;
  margin: 0 0 10px;
  font-weight: normal;
}

.site-footer {
  text-align: center;
  font-size: 15px;
  padding-top: 22px;
}

.site-footer p {
  margin: 6px 0;
}

@media (max-width: 900px) {
  .main-nav {
    gap: 18px;
    font-size: 16px;
    flex-wrap: wrap;
  }

  .two-col {
    flex-direction: column;
  }

  .text-block,
  .map-block {
    width: 100%;
  }

  .rooms-layout {
    flex-direction: column;
  }

  .rooms-photo,
  .rooms-text {
    width: 100%;
  }
}
