* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1f2a24;
  background: #f7f7f4;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  background: #0f2a1f;
  color: #f1f6f3;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0.3px;
}

.brand span {
  font-size: 12px;
  opacity: 0.8;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  background: #f2c94c;
  color: #1a1a1a;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.hero {
  padding: 48px 24px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.6px;
  color: #2f5c4a;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 600;
}

h1 {
  font-size: 38px;
}

p {
  margin: 0;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #0f5c4c;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: #e2efe9;
  color: #0f2a1f;
}

.btn:focus,
.btn:hover {
  transform: translateY(-1px);
  background: #0c4a3d;
}

.btn.secondary:focus,
.btn.secondary:hover {
  background: #cfe5dd;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  background: #d8e4df;
  min-height: 260px;
  display: flex;
  align-items: stretch;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 48px 24px;
}

.section.alt {
  background: #eef2ee;
}

.section.dark {
  background: #0f2a1f;
  color: #f5faf7;
}

.section.bg-section {
  background-image: url("https://images.unsplash.com/photo-1545208942-e1c9c916524b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f4fbf8;
  position: relative;
}

.section.bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 19, 0.6);
}

.section.bg-section > * {
  position: relative;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 160px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 20px rgba(15, 42, 31, 0.08);
}

.section.dark .stat {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: none;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  align-items: center;
  box-shadow: 0 12px 20px rgba(15, 42, 31, 0.08);
}

.service-card img {
  width: 140px;
  height: 110px;
  border-radius: 12px;
}

.service-meta {
  flex: 1 1 220px;
}

.price {
  font-weight: 700;
  color: #0f5c4c;
  font-size: 18px;
}

.form-panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 30px rgba(15, 42, 31, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c9d6d1;
  font-size: 14px;
  font-family: inherit;
}

.footer {
  background: #0b1e17;
  color: #dbe7e1;
  padding: 32px 24px;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid > div {
  flex: 1 1 200px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(15, 42, 31, 0.2);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.sticky-cta p {
  font-size: 14px;
  margin: 0;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.content {
  padding: 32px 24px 48px;
}

.content h1 {
  margin-bottom: 16px;
}

.content h2 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.content p {
  margin-bottom: 12px;
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 20px rgba(15, 42, 31, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-note {
  background: #f8fbfa;
  border-left: 4px solid #0f5c4c;
  padding: 14px;
  border-radius: 8px;
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
  }

  h1 {
    font-size: 32px;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
  }
}
