* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a22;
  background: #f4f6f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1f5b3f;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.85;
}

.page {
  width: 100%;
  overflow: hidden;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 8%;
  background: #eef3ee;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: lowercase;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 0.9rem;
  background: #dfeadd;
  padding: 6px 12px;
  border-radius: 20px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom: 1px solid #1f5b3f;
}

.hero {
  position: relative;
  padding: 80px 8% 60px;
  background: #f4f6f2;
}

.hero-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-text p {
  margin-bottom: 18px;
}

.hero-visual {
  flex: 1 1 340px;
  position: relative;
}

.hero-visual .image-shell {
  background: #cfe0d4;
  padding: 12px;
  transform: rotate(-2deg);
}

.image-shell {
  background: #d8e5dc;
  padding: 12px;
}

.hero-visual img {
  width: 100%;
  height: 360px;
}

.badge {
  position: absolute;
  bottom: -18px;
  right: 10%;
  background: #1f5b3f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  background: #1f5b3f;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-light {
  background: #ffffff;
  color: #1f5b3f;
  border: 1px solid #1f5b3f;
}

.section {
  padding: 70px 8%;
  position: relative;
}

.section-alt {
  background: #e7eee6;
}

.offset {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.offset.reverse {
  flex-direction: row-reverse;
}

.offset .block {
  flex: 1 1 320px;
}

.offset .block.highlight {
  background: #ffffff;
  padding: 26px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-18px);
}

.section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-frame {
  background: #d8e5dc;
  border-radius: 14px;
  padding: 8px;
}

.card img {
  width: 100%;
  height: 170px;
  border-radius: 14px;
}

.card .price {
  font-weight: 700;
  color: #1f5b3f;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.column {
  flex: 1 1 260px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-shell {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c3d2c7;
  font-size: 1rem;
  background: #f9fbf8;
}

.footer {
  padding: 50px 8%;
  background: #1f2a22;
  color: #eef3ee;
}

.footer a {
  color: #cfe0d4;
}

.footer .columns {
  align-items: flex-start;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1f5b3f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.subtle {
  color: #5f6f63;
  font-size: 0.95rem;
}

.notice {
  background: #edf3ef;
  padding: 18px;
  border-left: 4px solid #1f5b3f;
}

.no-phone {
  font-style: italic;
  color: #5b6b60;
}

@media (max-width: 900px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .badge {
    position: static;
    margin-top: 16px;
  }
  .sticky-cta {
    position: static;
    margin: 18px auto 0;
    display: inline-flex;
  }
}
