* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2b27;
  background-color: #f5f6f1;
  line-height: 1.6;
}

a {
  color: #1e5a49;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  background-color: #ffffff;
  border-bottom: 1px solid #dde3dc;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
}

.ad-label {
  background-color: #e7efe9;
  color: #2c4d40;
  padding: 6px 10px;
  border-radius: 16px;
  font-size: 0.75rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 40px 6% 80px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .visual-block {
  flex: 1;
  min-height: 320px;
  display: flex;
  align-items: stretch;
}

.image-frame {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.bg-sage {
  background-color: #c8d4c4;
}

.bg-ink {
  background-color: #2b3a36;
}

.bg-sand {
  background-color: #e9e1d2;
}

.bg-moss {
  background-color: #b6c5b0;
}

.hero {
  padding: 36px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(20, 44, 36, 0.08);
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.pill-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  border: 1px solid #cfd8cf;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  background-color: #f8faf6;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background-color: #1e5a49;
  color: #ffffff;
}

.btn-secondary {
  background-color: #e7efe9;
  color: #1e5a49;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.accent-panel {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 8px 28px rgba(20, 44, 36, 0.08);
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 240px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(20, 44, 36, 0.06);
}

.card .price {
  font-weight: 700;
  color: #1e5a49;
}

.card .image-frame {
  height: 160px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-step span {
  background-color: #1e5a49;
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-panel {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border: 1px solid #cfd8cf;
  border-radius: 10px;
  font-size: 1rem;
}

.form-helper {
  font-size: 0.9rem;
  color: #3f4f49;
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #1e5a49;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(30, 90, 73, 0.3);
  z-index: 20;
}

.site-footer {
  background-color: #1f2b27;
  color: #e6efe8;
  padding: 32px 6% 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #e6efe8;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d3ddd6;
}

.cookie-banner {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 10px 30px rgba(20, 44, 36, 0.18);
  display: flex;
  gap: 16px;
  align-items: center;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  margin: 0;
  max-width: 420px;
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  padding: 28px;
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(20, 44, 36, 0.08);
}

.legal-section {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .site-nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
