* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d2622;
  background-color: #f6f3ef;
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.text-link {
  border-bottom: 1px solid #1d2622;
  padding-bottom: 1px;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 24px 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom-color: #1d2622;
}

.ad-label {
  font-size: 12px;
  color: #3e4a45;
  background: #e7e0d8;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 30px;
  align-items: stretch;
  margin-top: 20px;
}

.hero-text {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.2;
}

.hero p {
  font-size: 17px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 12px 20px;
  border-radius: 999px;
  background: #2f5b4b;
  color: #f6f3ef;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-btn.secondary {
  background: #d5c7b6;
  color: #1d2622;
}

.image-frame {
  background-color: #d9e2dc;
  border-radius: 18px;
  overflow: hidden;
  flex: 1 1 55%;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.magazine-row {
  display: flex;
  gap: 24px;
  margin-top: 56px;
  align-items: stretch;
}

.magazine-col {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-title {
  font-size: 28px;
  line-height: 1.3;
}

.muted {
  color: #4b5c55;
}

.card-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.card-img {
  height: 160px;
  background-color: #e1e8e0;
  border-radius: 12px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inline-figure {
  display: flex;
  gap: 20px;
  align-items: center;
}

.inline-figure .image-frame {
  flex: 0 0 40%;
  height: 220px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 18px;
}

.feature-list li {
  list-style: none;
  position: relative;
  padding-left: 18px;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2f5b4b;
}

.bg-lake {
  background-image: url("https://images.unsplash.com/photo-1759607482332-ca2217856f8c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 32px;
  color: #f8f6f2;
  background-color: #50655b;
}

.bg-overlay {
  background: rgba(29, 38, 34, 0.62);
  padding: 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-section {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c2b7;
  font: inherit;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #2f5b4b;
  color: #f6f3ef;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.footer {
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid #d5cfc6;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #4c5852;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  padding: 16px 18px;
  width: min(520px, 92vw);
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-btn.accept {
  background: #2f5b4b;
  color: #f6f3ef;
}

.cookie-btn.reject {
  background: #e7e0d8;
  color: #1d2622;
}

.simple-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 24px 80px;
}

.simple-page h1 {
  font-size: 34px;
  margin: 20px 0 12px;
}

.simple-page p {
  margin-bottom: 16px;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  background: #f0ebe4;
}

.service-row strong {
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero,
  .magazine-row,
  .inline-figure {
    flex-direction: column;
  }

  .image-frame,
  .inline-figure .image-frame {
    height: 260px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
