* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b2a24;
  background-color: #f7f8f5;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

button {
  font: inherit;
  cursor: pointer;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 0.85rem;
  color: #465b52;
  background: #e1ebe4;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links a {
  font-size: 0.95rem;
}

.cta-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.cta-button {
  background: #2a6b4f;
  color: #fff;
}

.outline-button {
  border-color: #2a6b4f;
  color: #2a6b4f;
  background: transparent;
}

.cta-button:active,
.outline-button:active {
  transform: scale(0.98);
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  padding: 64px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.split-media {
  background-color: #dde6df;
  border-radius: 24px;
  overflow: hidden;
}

.hero {
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  line-height: 1.15;
}

.tag {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #5f7b6d;
}

.section-title {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

.section-note {
  font-size: 0.95rem;
  color: #4c6258;
}

.inline-cta {
  font-weight: 600;
  color: #2a6b4f;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-media {
  flex: 0 0 220px;
  border-radius: 14px;
  overflow: hidden;
  background-color: #dfe8e2;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: #1f5b43;
}

.highlight {
  background: #f0f5f1;
  padding: 18px;
  border-radius: 16px;
}

.form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cbd8d1;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 32px 0 48px;
  font-size: 0.9rem;
  color: #465b52;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #586e63;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: #1f5b43;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 40;
}

.simple-page {
  padding: 60px 0 40px;
}

.contact-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-image {
  width: 100%;
  height: 100%;
}

.bg-panel-1 {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2e3f34;
  color: #ffffff;
}

.bg-panel-2 {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2b4036;
  color: #ffffff;
}

.bg-panel-3 {
  background-image: url("https://images.unsplash.com/photo-1502082553048-f009c37129b9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #31443a;
  color: #ffffff;
}

.bg-overlay {
  background: rgba(15, 40, 28, 0.55);
  padding: 48px;
  border-radius: 24px;
}

@media (max-width: 900px) {
  .split,
  .service-row {
    flex-direction: column;
  }

  .split.reverse,
  .service-row.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    transform: none;
    margin: 16px auto 0;
    width: fit-content;
  }
}
