* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c2a22;
  background: #f6f7f4;
  line-height: 1.6;
}

a {
  color: #1b5e3c;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  background: #e7efe8;
  padding: 18px 6%;
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #36473c;
  background: #dfe8e0;
  padding: 6px 10px;
  border-radius: 999px;
}

main {
  flex: 1;
}

.section {
  padding: 60px 6%;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.content-block {
  flex: 1;
  min-width: 280px;
}

.image-block {
  flex: 1;
  min-width: 280px;
  background: #ccd8cf;
  border-radius: 16px;
  overflow: hidden;
}

.hero {
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero h1 {
  font-size: 2.4rem;
  margin-top: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1b5e3c;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 2px solid #1b5e3c;
  color: #1b5e3c;
}

.tagline {
  font-size: 1.1rem;
  color: #3c4b42;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(12, 30, 20, 0.08);
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1b5e3c;
}

.split-highlight {
  background: #eaf1ea;
  border-radius: 24px;
  padding: 40px;
}

.bg-lake {
  background-image: url("https://images.pexels.com/photos/25287812/pexels-photo-25287812.jpeg");
  background-size: cover;
  background-position: center;
  color: #f2f5f2;
  position: relative;
}

.bg-lake::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 30, 24, 0.65);
}

.bg-lake .content-block {
  position: relative;
  z-index: 1;
}

.bg-field {
  background-image: url("https://images.pexels.com/photos/29202276/pexels-photo-29202276.jpeg");
  background-size: cover;
  background-position: center;
  color: #f7faf7;
  position: relative;
}

.bg-field::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 36, 26, 0.6);
}

.bg-field .content-block {
  position: relative;
  z-index: 1;
}

.form-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(12, 30, 20, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c6d3c8;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  background: #e7efe8;
  padding: 32px 6%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #334236;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1b5e3c;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1c2a22;
  color: #f7faf7;
  padding: 18px 6%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #8bc79b;
  color: #102218;
}

.cookie-reject {
  background: #f7f4ef;
  color: #1c2a22;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(12, 30, 20, 0.08);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: center;
  }
}
