:root {
  --green-900: #1e3a2b;
  --green-700: #2f5c43;
  --green-500: #4f8264;
  --green-200: #dce7df;
  --sand-100: #f7f4ef;
  --stone-700: #3f3f3a;
  --stone-500: #6a6a60;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--stone-700);
  background: var(--sand-100);
  line-height: 1.6;
}

a {
  color: var(--green-700);
  text-decoration: none;
}

a.inline-link {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.header {
  padding: 24px 0 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  color: var(--green-900);
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 15px;
}

.ad-label {
  margin-top: 10px;
  font-size: 13px;
  color: var(--stone-500);
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 32px 0 40px;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-image {
  flex: 1;
  background: #cdd9d1;
  border-radius: 18px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--green-700);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: var(--green-500);
}

.section {
  padding: 38px 0;
}

.section.alt {
  background: var(--white);
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .media {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #dfe6df;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  border-radius: 12px;
  overflow: hidden;
  background: #d7e1d5;
}

.card-image img {
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 700;
  color: var(--green-900);
}

.form-wrap {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccd6cf;
  font-size: 15px;
}

.form-details {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.form-details.visible {
  display: flex;
}

.footer {
  background: #1f2b22;
  color: #e4efe8;
  padding: 32px 0 50px;
  margin-top: 40px;
}

.footer a {
  color: #e4efe8;
}

.footer-columns {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 220px;
  font-size: 14px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 13px;
  color: #c7d5cc;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #d2ddd4;
  padding: 16px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.notice {
  background: #eef4ef;
  padding: 16px;
  border-radius: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 860px) {
  .hero,
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
