* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d2b24;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: #2b5f48;
  text-decoration: none;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  padding: 20px 0 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background: #e7efe7;
  border-radius: 999px;
  color: #2d3a31;
}

.hero {
  min-height: 420px;
  background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  margin: 10px 0 40px;
  display: flex;
  align-items: flex-end;
}

.hero-inner {
  background: rgba(255, 255, 255, 0.86);
  padding: 28px;
  margin: 24px;
  border-radius: 16px;
  max-width: 520px;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1.15;
}

.hero p {
  margin: 0 0 18px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #2b5f48;
  color: #fff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.section {
  padding: 48px 0;
}

.section.alt {
  background: #ffffff;
}

.section.shadow {
  background: #edf2ec;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1 1 320px;
}

.media {
  flex: 1 1 300px;
  background: #dfe7de;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offset-left {
  margin-left: 6%;
}

.offset-right {
  margin-right: 6%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(31, 44, 36, 0.08);
}

.card .media {
  min-height: 160px;
}

.price {
  font-weight: 700;
  color: #2b5f48;
}

.inline-cta {
  font-weight: 600;
}

.form-wrap {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cdd7ce;
  font-size: 14px;
  background: #fefefe;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 48px;
  color: #ffffff;
}

.section-bg .cta-button {
  background: #f4f7f3;
  color: #2b5f48;
}

.note {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(31, 44, 36, 0.08);
}

.footer {
  padding: 40px 0 80px;
  font-size: 13px;
  color: #2d3a31;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #cdd7ce;
  padding: 14px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #2b5f48;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
}

.cookie-button.primary {
  background: #2b5f48;
  color: #fff;
}

.muted {
  color: #425349;
}
