* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-900: #0f2a1f;
  --green-700: #224a37;
  --green-500: #3f6f57;
  --sand-100: #f4f1ea;
  --sand-200: #e8e0d6;
  --accent: #b8d96b;
  --ink: #1c1c1c;
  --muted: #5a6a62;
  --white: #ffffff;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand-100);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  width: 100%;
  overflow: hidden;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 8px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-900);
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.nav a {
  padding: 6px 8px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-bottom: 2px solid var(--green-700);
}

.ad-disclosure {
  font-size: 0.85rem;
  color: var(--green-700);
  background: var(--sand-200);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 6vw 60px;
  gap: 24px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 2.6rem;
  color: var(--green-900);
  line-height: 1.2;
}

.hero-text p {
  margin-top: 16px;
  color: var(--muted);
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green-700);
  color: var(--white);
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-700);
}

.hero-image {
  flex: 1 1 320px;
  min-height: 360px;
  border-radius: 32px;
  position: relative;
  background-color: #c7d6c2;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 50px 6vw;
}

.section.asym {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.asym .text-block {
  flex: 1 1 280px;
  max-width: 460px;
}

.asym .image-block {
  flex: 1 1 300px;
  min-height: 260px;
  border-radius: 24px;
  background-color: #ccd9c7;
  overflow: hidden;
  transform: translateY(-18px);
}

.asym.reverse .image-block {
  transform: translateY(18px);
}

.asym .image-block img {
  width: 100%;
  height: 100%;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--green-900);
  color: var(--white);
  padding: 40px 6vw;
  align-items: center;
}

.split-band h2 {
  flex: 1 1 240px;
  font-size: 2rem;
}

.split-band p {
  flex: 1 1 260px;
  color: #e2eee5;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 28px rgba(15, 42, 31, 0.08);
  display: flex;
  flex-direction: column;
}

.card-image {
  background-color: #d3e1d0;
  height: 160px;
}

.card-image img {
  width: 100%;
  height: 100%;
}

.card-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--green-700);
}

.inline-cta {
  color: var(--green-700);
  font-weight: 600;
  border-bottom: 2px solid var(--green-700);
  display: inline-block;
  margin-top: 10px;
}

.bg-image {
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.bg-image .content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.bg-story::before {
  background-image: url("https://images.unsplash.com/photo-1433086966358-54859d0ed716?w=1400&q=80");
}

.bg-trust::before {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 14px 24px rgba(15, 42, 31, 0.08);
  max-width: 520px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c6d1c8;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 40px 6vw;
  background: var(--green-900);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer a {
  color: #d9eadf;
}

.footer .small {
  font-size: 0.9rem;
  color: #d9eadf;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 20px rgba(15, 42, 31, 0.08);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: var(--green-900);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(15, 42, 31, 0.2);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(15, 42, 31, 0.2);
  max-width: 320px;
  z-index: 6;
}

.cookie-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.accept-btn {
  background: var(--green-700);
  color: var(--white);
}

.reject-btn {
  background: var(--sand-200);
  color: var(--green-900);
}

.page-title {
  padding: 30px 6vw 10px;
}

.page-title h1 {
  font-size: 2.2rem;
  color: var(--green-900);
}

.simple-section {
  padding: 30px 6vw 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 860px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--white);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 20px rgba(15, 42, 31, 0.08);
  align-items: center;
}

.service-item img {
  width: 160px;
  height: 120px;
  border-radius: 12px;
}

.service-details {
  flex: 1 1 240px;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .hero-text h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
  }
}
