* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1d2a24;
  background-color: #f6f7f4;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  gap: 16px;
  background-color: #eef2ee;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #3b5a4a;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #f6f7f4;
}

.nav-links a:hover {
  background-color: #dbe6dc;
}

.hero {
  padding: 60px 6vw 40px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .media {
  flex: 1 1 320px;
}

.image-frame {
  background-color: #c8d4c7;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(29, 42, 36, 0.12);
}

.image-frame img {
  width: 100%;
  height: auto;
}

.hero h1 {
  font-size: 2.8rem;
  margin: 0 0 16px;
}

.hero p {
  margin: 0 0 24px;
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background-color: #2d6a4f;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  gap: 8px;
}

.btn:hover {
  background-color: #1f4d39;
}

.btn-secondary {
  background-color: #dbe6dc;
  color: #1d2a24;
}

.btn-secondary:hover {
  background-color: #c3d3c5;
}

.section {
  padding: 48px 6vw;
}

.section.alt {
  background-color: #eef2ee;
}

.section h2 {
  font-size: 2rem;
  margin: 0 0 16px;
}

.section p {
  margin: 0 0 16px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(29, 42, 36, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
}

.service-card .price {
  font-weight: 700;
  color: #2d6a4f;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background-color: #dbe6dc;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.form-card {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(29, 42, 36, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfd8d0;
  font-size: 1rem;
}

.inline-link {
  color: #2d6a4f;
  text-decoration: underline;
}

.inline-link:hover {
  color: #1f4d39;
}

.split-background {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.overlay {
  background-color: rgba(27, 44, 36, 0.6);
  padding: 48px 6vw;
}

.footer {
  margin-top: auto;
  background-color: #1d2a24;
  color: #e4eee7;
  padding: 32px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #e4eee7;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #f4b400;
  color: #1d2a24;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(29, 42, 36, 0.18);
}

.sticky-cta:hover {
  background-color: #d99a00;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(29, 42, 36, 0.2);
  max-width: 320px;
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.legal-page {
  padding: 48px 6vw;
  max-width: 900px;
}

.legal-page h1 {
  font-size: 2.4rem;
}

.legal-page h2 {
  margin-top: 28px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(29, 42, 36, 0.12);
}

.price-table {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 16px;
  border-radius: 14px;
}

.price-row span {
  font-weight: 600;
}

.note {
  font-size: 0.95rem;
  color: #3b5a4a;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
  }
}
