* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2a1f;
  background-color: #f7f7f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background-color: #dfe6d8;
}

a {
  color: #1f5e4a;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #2a7b66;
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  background-color: #eef2ea;
  border-bottom: 1px solid #dfe6d8;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.9rem;
  color: #4d5b4d;
  background-color: #e2e8dd;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-link {
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 50px 6% 20px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  background-color: #1f5e4a;
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.secondary {
  background-color: #cfe2d5;
  color: #1f2a1f;
}

.button.text {
  background-color: transparent;
  color: #1f5e4a;
  padding: 0;
}

.section {
  padding: 48px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background-color: #eef2ea;
}

.section.tight {
  padding: 32px 6%;
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 6px 18px rgba(24, 38, 24, 0.08);
}

.card-muted {
  background-color: #e9efe6;
}

.card img {
  border-radius: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #dfe6d8;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.quote {
  padding: 18px;
  border-left: 4px solid #1f5e4a;
  background-color: #f7faf4;
}

.background-panel {
  background-size: cover;
  background-position: center;
  color: #ffffff;
  border-radius: 18px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bg-river {
  background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80");
}

.bg-meadow {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=80");
}

.form-wrapper {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(24, 38, 24, 0.12);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cfd6c8;
  font-size: 0.95rem;
  font-family: inherit;
  background-color: #ffffff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin: 0 6% 24px;
  background-color: #1f2a1f;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer {
  margin-top: auto;
  padding: 32px 6%;
  background-color: #1f2a1f;
  color: #e8efe6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer a {
  color: #cfe2d5;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(24, 38, 24, 0.18);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice {
  font-size: 0.95rem;
  color: #425244;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.info-block {
  flex: 1 1 220px;
  background-color: #f1f5ed;
  padding: 16px;
  border-radius: 10px;
}

.highlight {
  font-weight: 600;
  color: #1f5e4a;
}

.spaced {
  margin: 0;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    max-width: 520px;
  }
}
