* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1f1d;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: #1d4f3c;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6%;
  background: #eef1e6;
  border-bottom: 1px solid #d9ddcf;
}

.top-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: #4a4f45;
  background: #dbe3d0;
  padding: 6px 10px;
  border-radius: 999px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fdfcf7;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 36, 28, 0.62);
}

.hero .section-inner {
  position: relative;
  z-index: 1;
}

.section {
  padding: 60px 6%;
}

.section.alt {
  background: #f0f2ea;
}

.section.highlight {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fdfcf7;
  position: relative;
}

.section.highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 26, 22, 0.68);
}

.section.highlight .section-inner {
  position: relative;
  z-index: 1;
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media,
.split .panel {
  flex: 1 1 320px;
}

.image-frame {
  background-color: #dfe4d2;
  padding: 12px;
  border-radius: 18px;
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.pricing-item span {
  display: block;
}

.pricing-item .price {
  font-weight: 600;
  color: #1d4f3c;
  white-space: nowrap;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 18px;
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  object-fit: cover;
  background-color: #dfe4d2;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #1d4f3c;
  color: #ffffff;
  font-size: 0.95rem;
  cursor: pointer;
}

.button.secondary {
  background: #cfd7c3;
  color: #1d2a22;
}

.form-panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd7c3;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.sticky-cta .button {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.site-footer {
  margin-top: auto;
  background: #1c1f1a;
  color: #f1f2ed;
  padding: 40px 6%;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-grid div {
  flex: 1 1 220px;
}

.disclaimer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #c6ccb9;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  max-width: 340px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.muted {
  color: #5c6156;
}

.centered-note {
  text-align: center;
  padding: 16px 20px;
  background: #e4e9da;
  border-radius: 16px;
}

@media (max-width: 860px) {
  .site-header {
    padding: 20px 5%;
  }

  .section {
    padding: 48px 5%;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
