* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2a1f;
  background: #f7f5f0;
  line-height: 1.6;
}

a {
  color: #1f6a44;
  text-decoration: none;
}

a:focus,
button:focus {
  outline: 2px solid #1f6a44;
  outline-offset: 2px;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #e4ecdf;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  background: #1f2a1f;
  color: #f6f5ef;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 6px;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-list a {
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 40px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px;
  border-radius: 24px;
  color: #f8f7f3;
  background-color: #365645;
  background-size: cover;
  background-position: center;
}

.hero-content {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  background: #1f6a44;
  color: #fefbf6;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-secondary {
  background: #fefbf6;
  color: #1f6a44;
  border: 1px solid #1f6a44;
}

.media-frame {
  flex: 1 1 280px;
  background: #cdd9c5;
  border-radius: 20px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #cdd9c5;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(31, 42, 31, 0.08);
}

.card img {
  border-radius: 12px;
  height: 160px;
}

.price {
  font-weight: 700;
  color: #1f6a44;
}

.highlight {
  background: #f0efe9;
  padding: 32px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.background-panel {
  padding: 36px;
  border-radius: 20px;
  color: #f8f7f3;
  background-color: #3b5d49;
  background-size: cover;
  background-position: center;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80");
}

.bg-garden-texture {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.inline-link {
  font-weight: 600;
}

.form-shell {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 10px 24px rgba(31, 42, 31, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #c7d1c2;
  font-size: 15px;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1f6a44;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.footer {
  border-top: 1px solid #d9e2d3;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.small-note {
  font-size: 13px;
  color: #4e5a4e;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: column;
  }

  .content {
    padding: 32px 24px 80px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
