* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a24;
  background: #f6f4ef;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 14px;
  color: #4b5b52;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  background: #e2efe7;
  padding: 6px 10px;
  border-radius: 999px;
  color: #2c4a3a;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.image-frame {
  background: #dfe9e0;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  margin-top: 44px;
}

.section-title {
  font-size: 28px;
  margin: 0 0 12px;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: #3a4a41;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #2f5a43;
  color: #ffffff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.button.alt {
  background: #e3efe7;
  color: #2f5a43;
  border: 1px solid #2f5a43;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.card .price {
  font-size: 20px;
  color: #2f5a43;
  font-weight: 600;
}

.list {
  padding-left: 18px;
  margin: 0;
  line-height: 1.6;
}

.form-panel {
  background: #1f2a24;
  color: #f6f4ef;
  border-radius: 18px;
  padding: 28px;
}

.form-panel label {
  display: block;
  margin-top: 12px;
  font-size: 14px;
}

.form-panel input,
.form-panel select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
}

.form-note {
  font-size: 13px;
  color: #cfe0d4;
  margin-top: 10px;
}

.footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #c9d6cf;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #4b5b52;
}

.footer a {
  color: #2f5a43;
}

.footer small {
  display: block;
  max-width: 520px;
  line-height: 1.5;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  padding: 18px;
  display: none;
  z-index: 40;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.muted {
  color: #6b7b72;
}

.inline-link {
  color: #2f5a43;
  text-decoration: underline;
}

@media (max-width: 820px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
