:root {
  --green-900: #183624;
  --green-700: #2f5e3f;
  --green-200: #dfeee3;
  --sand-100: #f6f4ef;
  --sand-200: #e9e4d9;
  --accent: #9bbf6b;
  --ink: #1f2a22;
  --muted: #5a6b60;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: var(--sand-100);
  line-height: 1.6;
}

a {
  color: var(--green-700);
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

header {
  padding: 24px 0 8px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.brand small {
  font-weight: 500;
  text-transform: none;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--green-200);
  font-size: 12px;
  color: var(--green-900);
  white-space: nowrap;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 36px 0;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 360px;
}

.split-media {
  background: var(--sand-200);
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.split-media img {
  width: 100%;
  height: 100%;
}

.split-media.bg-photo {
  background-position: center;
  background-size: cover;
}

.bg-kcsm {
  background-image: url("https://images.pexels.com/photos/15576451/pexels-photo-15576451.jpeg");
}

.section-title {
  font-size: clamp(28px, 3vw, 36px);
  margin: 0 0 12px;
}

.hero-title {
  font-size: clamp(34px, 4vw, 48px);
  margin: 0 0 16px;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green-700);
  color: var(--white);
  font-weight: 600;
}

.button.secondary {
  background: var(--accent);
  color: var(--ink);
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

.card {
  flex: 1 1 210px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--green-900);
}

.highlight {
  background: var(--green-200);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccd6cc;
  font-size: 16px;
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
}

footer {
  background: var(--green-900);
  color: var(--sand-100);
  padding: 32px 0 80px;
  margin-top: 40px;
}

footer a {
  color: var(--sand-100);
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 13px;
  color: #d6e1d8;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  padding: 16px;
  display: none;
  z-index: 1000;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--green-700);
  color: var(--white);
}

.cookie-reject {
  background: var(--sand-200);
  color: var(--ink);
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--green-700);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 900;
}

.cookie-visible .sticky-cta {
  bottom: 110px;
}

.meta-box {
  background: var(--sand-200);
  padding: 18px;
  border-radius: 14px;
}

@media (max-width: 860px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 10px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
