* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a20;
  background: #f6f4ef;
  line-height: 1.6;
}

a {
  color: #2b5f41;
  text-decoration: none;
}

a:focus,
a:hover {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  background: #e6ede1;
  padding: 16px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  background: #1f2a20;
  color: #f6f4ef;
  padding: 6px 10px;
  border-radius: 18px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  background: #dfe8d6;
}

.split {
  display: flex;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
  padding: 48px 8%;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.split-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0f3ea;
  color: #2c4232;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 28px;
  background: #2b5f41;
  color: #f6f4ef;
  font-weight: 600;
  border: 1px solid #2b5f41;
}

.btn.secondary {
  background: transparent;
  color: #2b5f41;
}

.section-alt {
  background: #f0f3ea;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(23, 34, 26, 0.08);
}

.card .card-media {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
}

.card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing {
  font-weight: 700;
  color: #1f2a20;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 24px rgba(31, 42, 32, 0.1);
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #b7c6b0;
  font-size: 1rem;
  background: #f8faf6;
}

.footer {
  margin-top: auto;
  padding: 32px 8%;
  background: #1f2a20;
  color: #f6f4ef;
}

.footer a {
  color: #f6f4ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  width: 100%;
  background: rgba(31, 42, 32, 0.95);
  color: #f6f4ef;
  padding: 12px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-cta a {
  color: #1f2a20;
  background: #f6f4ef;
  padding: 8px 16px;
  border-radius: 24px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 26px rgba(31, 42, 32, 0.2);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 16px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #2b5f41;
  color: #f6f4ef;
}

.cookie-actions .reject {
  background: #e6ede1;
  color: #1f2a20;
}

.legal-block {
  padding: 48px 8%;
  background: #ffffff;
}

.bg-sage {
  background: #c7d6c1;
}

.bg-olive {
  background: #d9e3d0;
}

.bg-mist {
  background: #e6ede1;
}

.note {
  font-size: 0.9rem;
  color: #4b5c4d;
}
