* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f2a1f;
  background-color: #f5f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 28px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5f4f0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: #dfe8db;
  color: #324132;
}

main {
  flex: 1;
}

.section {
  padding: 72px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split .visual-block {
  flex: 1;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.1;
  margin: 0;
}

.lead {
  font-size: 1.15rem;
  color: #3a4a3a;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 28px;
  background: #2b5b3d;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border: 2px solid #2b5b3d;
  color: #2b5b3d;
}

.btn:hover,
.nav a:hover {
  opacity: 0.85;
}

.image-frame {
  background-color: #dfe8db;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card .price {
  font-weight: 700;
  color: #2b5b3d;
}

.tagline {
  font-size: 0.95rem;
  color: #546454;
}

.background-panel {
  background-color: #2e4635;
  background-image: url("https://images.unsplash.com/photo-1766988460209-7fe0bc3833f1?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 32px;
  color: #f5f4f0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.background-panel .btn.secondary {
  border-color: #f5f4f0;
  color: #f5f4f0;
}

.form-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cbd5c3;
  font-size: 1rem;
}

.form-message {
  font-size: 0.9rem;
  color: #b93f2b;
  min-height: 20px;
}

.notice {
  background: #f0efe9;
  padding: 18px;
  border-radius: 16px;
  color: #3c4a3c;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

footer {
  padding: 32px 6%;
  background: #e6e4dc;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.two-column {
  display: flex;
  gap: 32px;
}

.legal-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .split,
  .two-column {
    flex-direction: column;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
