*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background: #f6f8f7;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1b5a4b;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 8px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0d3a31;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: #5f6b6f;
  border-left: 1px solid #ced6d0;
  padding-left: 16px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin: 24px 0 48px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  background: #fefefe;
  border-radius: 18px;
}

.hero-visual {
  flex: 1;
  background: #cfd9d4;
  border-radius: 18px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button-primary {
  padding: 12px 22px;
  background: #1b5a4b;
  color: #fff;
  border: none;
  border-radius: 999px;
}

.button-secondary {
  padding: 12px 22px;
  background: transparent;
  color: #1b5a4b;
  border: 1px solid #1b5a4b;
  border-radius: 999px;
}

.split-section {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-image {
  flex: 1;
  background: #d8e2dd;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
}

.split-image img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 220px;
}

.card-media {
  background: #d2dad5;
  border-radius: 12px;
  overflow: hidden;
  height: 160px;
  display: flex;
}

.card-media img {
  width: 100%;
  height: 100%;
}

.price {
  font-weight: 700;
  color: #1b5a4b;
}

.strip {
  background: #0d3a31;
  color: #f8fbfa;
  padding: 36px 0;
  margin: 32px 0;
}

.backdrop-panel {
  background-color: #0d3a31;
  background-image: linear-gradient(
      rgba(13, 58, 49, 0.8),
      rgba(13, 58, 49, 0.8)
    ),
    url("https://images.unsplash.com/photo-1770656505795-350f37352c7a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  padding: 36px;
  color: #f8fbfa;
}

.strip .page {
  display: flex;
  gap: 28px;
  align-items: center;
}

.strip-text {
  flex: 2;
}

.strip-cta {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.service-picker {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-buttons button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #1b5a4b;
  background: #fff;
  color: #1b5a4b;
}

.service-selected {
  font-weight: 600;
  color: #1b5a4b;
}

.form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c6d0cb;
}

.form-hidden {
  display: none;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #1b5a4b;
  color: #fff;
}

.footer {
  background: #0f1f1c;
  color: #e5ece9;
  padding: 36px 0 48px;
  margin-top: 48px;
}

.footer a {
  color: #d8e5df;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-column {
  flex: 1 1 180px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c8d6d0;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 20;
  max-width: 320px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #1b5a4b;
  background: #fff;
  color: #1b5a4b;
}

.cookie-actions .accept {
  background: #1b5a4b;
  color: #fff;
  border: none;
}

.page-title {
  margin: 28px 0 18px;
}

.info-block {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  margin-bottom: 18px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.note {
  background: #eff4f2;
  border-radius: 12px;
  padding: 16px;
}

@media (max-width: 900px) {
  .hero,
  .split-section {
    flex-direction: column;
  }

  .strip .page {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
