* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1e1e;
  background: #f6f4f0;
  line-height: 1.6;
}

a {
  color: #1d4b3c;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.header {
  padding: 24px 0 12px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #5f5a52;
  max-width: 260px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  padding: 48px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.hero {
  background: #dce4dc;
  border-radius: 18px;
  padding: 36px;
}

.hero h1 {
  font-size: 38px;
  margin-top: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1d4b3c;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn.alt {
  background: #f2c94c;
  color: #1e1e1e;
}

.btn.light {
  background: #ffffff;
  color: #1d4b3c;
  border: 1px solid #d4d0c8;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.card-media {
  border-radius: 12px;
  overflow: hidden;
  background: #d9d3c5;
  margin-bottom: 12px;
}

.muted {
  color: #5f5a52;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid #dcd7ce;
  padding-bottom: 12px;
}

.price {
  font-weight: 700;
  color: #1d4b3c;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d4d0c8;
  font-size: 14px;
  font-family: inherit;
}

.inline-cta {
  font-weight: 600;
}

.section-title {
  font-size: 28px;
  margin-bottom: 8px;
}

.highlight {
  background: #fff3cc;
  padding: 12px 16px;
  border-radius: 14px;
}

.footer {
  margin-top: 48px;
  padding: 32px 0 80px;
  border-top: 1px solid #dcd7ce;
  font-size: 13px;
  color: #5f5a52;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1e1e1e;
  color: #fff;
  padding: 16px;
  border-radius: 16px;
  width: min(360px, 92%);
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 100;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(246, 244, 240, 0.95);
  border-top: 1px solid #dcd7ce;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  z-index: 90;
}

.sticky-cta .btn {
  padding: 10px 24px;
}

.image-panel {
  border-radius: 18px;
  overflow: hidden;
  background: #cfd8d3;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 300px;
}

.list {
  padding-left: 18px;
}

.callout {
  border-left: 4px solid #1d4b3c;
  padding-left: 16px;
}

.reference-list a {
  color: #1d4b3c;
}

.note {
  font-size: 12px;
  color: #6a655e;
}
