* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1f1d;
  background-color: #f4f6f2;
  line-height: 1.6;
}

a {
  color: #1b5e4b;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 13px;
  padding: 6px 10px;
  border: 1px solid #1b5e4b;
  border-radius: 999px;
  color: #1b5e4b;
}

.hero {
  position: relative;
  margin-bottom: 72px;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background-color: #cfd8d3;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.hero-inner {
  position: relative;
  display: flex;
  gap: 32px;
  padding: 48px;
  flex: 1;
  z-index: 1;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-card {
  flex: 0.9;
  background-color: #e7efe8;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card .img-frame {
  height: 220px;
}

.section {
  margin-bottom: 64px;
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.narrow {
  max-width: 940px;
  margin-left: auto;
}

.section-offset {
  margin-top: -36px;
  background-color: #e9eee6;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 24px 45px rgba(10, 30, 18, 0.08);
}

.section-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-media {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.img-frame {
  background-color: #dfe7e1;
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
}

.inline-image {
  height: 260px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 260px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 35px rgba(10, 30, 18, 0.06);
}

.card .img-frame {
  height: 160px;
}

.price {
  font-weight: 700;
  color: #1b5e4b;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background-color: #1b5e4b;
  color: #ffffff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
}

.btn.secondary {
  background-color: #ffffff;
  color: #1b5e4b;
  border: 1px solid #1b5e4b;
}

.btn:hover,
.btn:focus {
  opacity: 0.9;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background-color: #1b5e4b;
  color: #ffffff;
  padding: 28px;
  border-radius: 20px;
}

.cta-strip a {
  color: #ffffff;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 22px 40px rgba(10, 30, 18, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row label {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c6d2cb;
  font-size: 15px;
  font-family: inherit;
}

.footer {
  padding: 48px 0 24px;
  border-top: 1px solid #ccd8d0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 16px 32px rgba(10, 30, 18, 0.18);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 96px;
  background-color: #f2f7f4;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(10, 30, 18, 0.16);
  z-index: 40;
}

.sticky-cta a {
  font-weight: 600;
}

.list {
  margin: 0;
  padding-left: 20px;
}

.legal-section {
  margin-bottom: 32px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(10, 30, 18, 0.06);
}

@media (max-width: 960px) {
  .hero-inner,
  .section,
  .cta-strip {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
  }

  .hero-card .img-frame {
    height: 180px;
  }
}
