* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a22;
  background-color: #f4f1ec;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  background-color: #e7ede7;
  padding: 18px 36px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 20px;
}

.nav-links a:hover {
  background-color: #d9e4dc;
}

.ad-label {
  font-size: 0.85rem;
  color: #3c5144;
  background-color: #dbe7df;
  padding: 6px 10px;
  border-radius: 12px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 36px 20px;
}

.hero-media,
.hero-content {
  flex: 1 1 320px;
}

.hero-media {
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #ccd9d0;
}

.hero-content h1 {
  font-size: 2.4rem;
  margin: 0 0 16px;
}

.hero-content p {
  font-size: 1.05rem;
  margin: 0 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #204c3b;
  color: #ffffff;
  font-weight: 600;
}

.btn:hover {
  background-color: #1a3d30;
}

.btn-ghost {
  background-color: transparent;
  color: #204c3b;
  border: 1px solid #204c3b;
}

.btn-ghost:hover {
  background-color: #e1ece4;
}

.section {
  padding: 36px;
}

.section-light {
  background-color: #ffffff;
}

.section-accent {
  background-color: #e8efe8;
}

.insight-bg {
  background-color: #dfe7e1;
  background-image: url("https://images.unsplash.com/photo-1470770903676-69b98201ea1c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.col {
  flex: 1 1 260px;
}

.col-wide {
  flex: 2 1 420px;
}

.col-narrow {
  flex: 1 1 220px;
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  background-color: #d8e1d9;
  min-height: 220px;
}

.image-frame.tall {
  min-height: 320px;
}

.quote {
  font-style: italic;
  background-color: #f0f3ed;
  padding: 18px;
  border-radius: 16px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #204c3b;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-item {
  padding: 14px;
  background-color: #f7f4ef;
  border-radius: 14px;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 22px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cdd7ce;
  font: inherit;
  background-color: #f9faf8;
}

.form-grid button {
  border: none;
  cursor: pointer;
}

.inline-link {
  color: #204c3b;
  text-decoration: underline;
}

.inline-link:hover {
  color: #163529;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
}

.sticky-cta a {
  padding: 12px 18px;
  background-color: #204c3b;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
}

.sticky-cta a:hover {
  background-color: #19382c;
}

.footer {
  margin-top: auto;
  background-color: #1f2a22;
  color: #f5f4f1;
  padding: 32px 36px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 12px 0 18px;
}

.footer a:hover {
  color: #c7d8cb;
}

.disclaimer {
  font-size: 0.92rem;
  color: #d5dfd6;
  margin-top: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  color: #1f2a22;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background-color: #204c3b;
  color: #ffffff;
}

.cookie-accept:hover {
  background-color: #163529;
}

.cookie-reject {
  background-color: #e7e0d8;
  color: #1f2a22;
}

.cookie-reject:hover {
  background-color: #d8d0c6;
}

.page-title {
  font-size: 2rem;
  margin: 0 0 16px;
}

.subtle {
  color: #4b5b51;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 260px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 16px;
}

.legal-block {
  background-color: #ffffff;
  padding: 18px;
  border-radius: 16px;
  margin-bottom: 18px;
}

.section-hero {
  padding: 32px 36px 10px;
}

.section-hero .image-frame {
  min-height: 260px;
}

.muted {
  color: #617064;
}
