* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f2b1f;
  background-color: #f6f5f0;
  line-height: 1.6;
}

a {
  color: #1f2b1f;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: #e8efe4;
}

.nav-brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  background: #dfe8d9;
  padding: 6px 10px;
  border-radius: 20px;
}

.hero {
  padding: 40px 6vw 20px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
  padding: 30px 6vw;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel.copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.image-box {
  background-color: #d9e2d2;
  border-radius: 18px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.section-title {
  font-size: 1.8rem;
  margin: 0;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: #4c5a46;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  background: #2f5a36;
  color: #f6f5f0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.secondary {
  background: #e0e6db;
  color: #1f2b1f;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card .image-box {
  min-height: 160px;
}

.price {
  font-weight: 700;
  color: #2f5a36;
}

.details {
  background: #eef2ea;
}

.split.tone {
  background: #eef2ea;
  border-radius: 32px;
  margin: 24px 6vw;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd6c4;
  font: inherit;
  background: #fdfdfb;
}

.sticky-cta {
  display: flex;
  justify-content: center;
  padding: 12px 6vw;
  background: #1f2b1f;
  position: sticky;
  top: 0;
  z-index: 10;
}

.sticky-cta a {
  color: #f6f5f0;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 40px;
  background: #e8efe4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.9rem;
  color: #4c5a46;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.simple-section {
  padding: 30px 6vw;
}

.two-column {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 300px;
}
