* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c2a21;
  background: #f6f7f4;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #234f3b;
  text-decoration: none;
}

.page {
  width: 100%;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 6%;
  background: #eef2ed;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: #334b3c;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  align-items: center;
  justify-content: flex-end;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 40px 6% 70px;
  background: #dde7df;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
}

.hero-image {
  margin-top: 28px;
  background: #c7d6cc;
  border-radius: 24px;
  overflow: hidden;
  align-self: flex-end;
  width: min(720px, 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: 420px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1f6b4a;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

.btn-secondary {
  background: #dde7df;
  color: #1f6b4a;
  border: 1px solid #1f6b4a;
}

.section {
  padding: 60px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-offset {
  margin-left: 8%;
  background: #f1f5f1;
  border-radius: 26px;
  padding: 50px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.two-column .text {
  flex: 1 1 320px;
}

.two-column .media {
  flex: 1 1 300px;
  background: #c9d6cf;
  border-radius: 18px;
  overflow: hidden;
}

.two-column img {
  width: 100%;
  height: 320px;
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.image-strip .strip-card {
  flex: 1 1 220px;
  background: #dfe9e2;
  border-radius: 18px;
  overflow: hidden;
}

.strip-card img {
  width: 100%;
  height: 200px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 250px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: 180px;
  border-radius: 16px;
}

.price {
  font-weight: 700;
  color: #1f6b4a;
}

.form-wrap {
  background: #eef2ed;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #b8c4bc;
  font-size: 14px;
  font-family: inherit;
}

.footer {
  padding: 40px 6%;
  background: #1f2f26;
  color: #f0f5f2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #cfe2d4;
}

.disclaimer {
  font-size: 12px;
  line-height: 1.5;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #264d3c;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.sidebar-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.sidebar {
  flex: 1 1 220px;
  background: #e0e9e2;
  border-radius: 18px;
  padding: 24px;
}

.content-area {
  flex: 3 1 420px;
}

.notice-block {
  padding: 18px 20px;
  border-left: 4px solid #1f6b4a;
  background: #f0f4f1;
}

.page-title {
  margin: 0 0 12px 0;
}

.split-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.split-banner .pane {
  flex: 1 1 320px;
  background: #e7eee9;
  border-radius: 18px;
  padding: 26px;
}

.contact-card {
  background: #f0f5f2;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reference-list a {
  color: #cfe2d4;
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: 34px;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}
