* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a22;
  background: #f6f5f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  background: #f0efe9;
  border-bottom: 1px solid #d6d4c8;
  gap: 20px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: #485346;
  max-width: 240px;
}

.hero,
.split-section {
  display: flex;
  gap: 32px;
  padding: 60px 6%;
  align-items: stretch;
}

.hero {
  background: #ffffff;
}

.hero-content,
.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-media,
.split-media {
  flex: 1;
  background: #dfe6d8;
  border-radius: 14px;
  overflow: hidden;
}

.hero-title {
  font-size: 2.7rem;
  line-height: 1.1;
}

.section-title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.subtle {
  color: #3e4b40;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: #2f5a3c;
  color: #ffffff;
  font-weight: 600;
  width: fit-content;
  cursor: pointer;
}

.btn.secondary {
  background: #e0e5da;
  color: #2f5a3c;
  border: 1px solid #c4cbbd;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid #2f5a3c;
  width: fit-content;
  cursor: pointer;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 10px 0;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid #d8ded2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  border-radius: 10px;
  width: 100%;
  height: 180px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2f5a3c;
}

.section-contrast {
  background: #e9efe4;
}

.section-dark {
  background: #1f2a22;
  color: #f6f5f1;
}

.section-dark .btn.secondary {
  background: transparent;
  color: #f6f5f1;
  border-color: #f6f5f1;
}

.form-wrap {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #d8ded2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cbd4c2;
  background: #fefefe;
  font-size: 1rem;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin: 0 6%;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid #d8ded2;
  padding: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  background: #f0efe9;
  border-top: 1px solid #d6d4c8;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #cfd6c6;
  border-radius: 12px;
  padding: 16px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.small-text {
  font-size: 0.85rem;
  color: #4b574b;
}

@media (max-width: 980px) {
  .hero,
  .split-section {
    flex-direction: column;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
