* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: #1f5b4a;
  text-decoration: none;
}

header {
  background: #f1ede7;
  padding: 18px 28px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.ad-label {
  font-size: 0.85rem;
  color: #5d5d5d;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 60vh;
}

.hero-text,
.hero-media {
  flex: 1 1 50%;
  padding: 48px;
}

.hero-media {
  background: #d2c8bf;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin: 0 0 16px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 50%;
  padding: 36px 48px;
}

.panel-light {
  background: #ffffff;
}

.panel-dark {
  background: #1f3a33;
  color: #f4f1ec;
}

.panel-muted {
  background: #efe7dd;
}

.image-frame {
  background: #d8d1c8;
  padding: 10px;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 14px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  background: #ffffff;
  padding: 18px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .price {
  font-weight: 700;
  font-size: 1.1rem;
}

.cta-button {
  background: #1f5b4a;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 1rem;
  align-self: flex-start;
}

.cta-outline {
  background: transparent;
  border: 1px solid #1f5b4a;
  color: #1f5b4a;
  padding: 10px 18px;
  cursor: pointer;
}

.inline-cta {
  font-weight: 600;
}

.form-section {
  background: #ffffff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 460px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #c8c3bd;
  font-size: 1rem;
  background: #ffffff;
}

.disclaimer {
  font-size: 0.9rem;
  color: #4f4f4f;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1f3a33;
  color: #ffffff;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.sticky-cta button {
  background: #ffffff;
  color: #1f3a33;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #ffffff;
  padding: 16px 24px;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  z-index: 6;
}

.cookie-banner button {
  background: #ffffff;
  color: #1a1a1a;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

footer {
  background: #1f3a33;
  color: #f4f1ec;
  padding: 32px 28px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-columns div {
  flex: 1 1 220px;
}

.references a {
  color: #f4f1ec;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hero-text,
  .hero-media,
  .split .panel {
    flex: 1 1 100%;
    padding: 28px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
