* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1e1e;
  background: #f7f4ef;
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: #2e5b42;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  background: #efe9df;
  padding: 18px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  background: #2e5b42;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.hero {
  display: flex;
  gap: 28px;
  padding: 40px 6% 10px;
  align-items: stretch;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-visual {
  flex: 1;
  background: #d8d1c5;
  border-radius: 18px;
  overflow: hidden;
}

.primary-btn {
  background: #2e5b42;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.secondary-btn {
  background: transparent;
  color: #2e5b42;
  border: 1px solid #2e5b42;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
}

.split {
  display: flex;
  gap: 28px;
  padding: 50px 6%;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-visual {
  flex: 1;
}

.split-visual {
  background: #d8d1c5;
  border-radius: 16px;
  overflow: hidden;
}

.section-title {
  font-size: 26px;
  margin: 0 0 14px;
}

.muted {
  color: #535353;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-image {
  background: #d8d1c5;
}

.price {
  font-weight: 700;
  color: #2e5b42;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill {
  background: #efe9df;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #c5c1b9;
  font-size: 15px;
  background: #ffffff;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 5;
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  background: #1f2a24;
  color: #f4f2ee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer-links a {
  color: #f4f2ee;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  display: none;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.notice {
  background: #efe9df;
  padding: 18px;
  border-radius: 10px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  flex: 1 1 240px;
}

.references {
  font-size: 13px;
  color: #f4f2ee;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 20px 6% 0;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
  }
}
