* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1a1f1a;
  background-color: #f6f7f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img.responsive-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6%;
  background-color: #e9efe6;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.9rem;
  color: #3a473b;
  background-color: #dfe8db;
  padding: 6px 10px;
  border-radius: 18px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 16px;
}

.nav-links a:hover,
.nav-links a:focus {
  background-color: #c8d6c0;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f5f7f3;
}

.hero-overlay {
  background-color: rgba(24, 36, 28, 0.7);
  padding: 48px 6%;
}

.section {
  padding: 48px 6%;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-column {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight {
  font-size: 2.4rem;
  line-height: 1.2;
}

.subtitle {
  font-size: 1.15rem;
  color: #cfe0cd;
  max-width: 560px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  background-color: #3f6a52;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  max-width: fit-content;
}

.button.secondary {
  background-color: #ffffff;
  color: #2c3c31;
  border: 1px solid #cbd6c8;
}

.button:hover,
.button:focus {
  background-color: #335745;
}

.button.secondary:hover,
.button.secondary:focus {
  background-color: #e3ebe0;
}

.image-frame {
  background-color: #d9e5d6;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.muted {
  color: #495449;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.metric {
  flex: 1 1 160px;
  background-color: #f0f5ee;
  padding: 14px 16px;
  border-radius: 16px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.service-card img {
  border-radius: 12px;
}

.service-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price {
  font-weight: 600;
  color: #2f4a37;
}

.cta-band {
  background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f7f4;
}

.cta-overlay {
  background-color: rgba(23, 33, 26, 0.74);
  padding: 40px 6%;
}

.form-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c5d3c4;
  font-family: inherit;
}

.form-card textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.footer {
  background-color: #1d2a21;
  color: #e8f0e6;
  padding: 32px 6%;
  margin-top: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer a {
  color: #d1e4d1;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #1f2a22;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 20;
  max-width: 520px;
  width: calc(100% - 48px);
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .highlight {
    font-size: 2rem;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
