* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a1f;
  background: #f6f7f3;
  line-height: 1.6;
}

a {
  color: #1f5f3b;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px 6vw 12px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: #2d6a4f;
  color: #f7fff7;
  font-weight: 600;
}

.ad-label {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #3f4b3f;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding: 32px 6vw 24px;
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-btn {
  padding: 12px 20px;
  border-radius: 8px;
  background: #1f5f3b;
  color: #f7fff7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.secondary-btn {
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #1f5f3b;
  color: #1f5f3b;
  background: #f6f7f3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.hero-media {
  flex: 1 1 320px;
  background-color: #d7e4d3;
  border-radius: 20px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 36px 6vw;
}

.section.alt {
  background: #eef1ea;
}

.split-block {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.split-block.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-media {
  flex: 1 1 320px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #cddcc8;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(31, 42, 31, 0.08);
}

.card-media {
  background-color: #dfe7d8;
  border-radius: 12px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: #2d6a4f;
}

.inline-cta {
  font-weight: 600;
  color: #1f5f3b;
}

.testimonial {
  padding: 16px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(31, 42, 31, 0.08);
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(31, 42, 31, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccd6c4;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  background: #1f2a1f;
  color: #f1f4ed;
  padding: 28px 6vw;
}

.footer a {
  color: #d4f2dc;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #d0d6cd;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1f5f3b;
  color: #f7fff7;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(31, 42, 31, 0.2);
  z-index: 20;
}

.sticky-cta a {
  color: #f7fff7;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 16px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -6px 20px rgba(31, 42, 31, 0.12);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.accept-btn {
  background: #2d6a4f;
  color: #ffffff;
}

.reject-btn {
  background: #e5e7e1;
  color: #1f2a1f;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(31, 42, 31, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.small-note {
  font-size: 0.95rem;
  color: #4a5a4a;
}
