* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e2428;
  background-color: #f7f6f3;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 10px;
}

.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 14px;
}

.nav-links a:hover,
.link:hover {
  text-decoration: underline;
}

.ad-label {
  font-size: 12px;
  color: #54606a;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background-color: #1f6b52;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background-color: #1e2428;
}

.btn.light {
  background-color: #ffffff;
  color: #1e2428;
  border: 1px solid #d5d9dc;
}

.btn:hover {
  opacity: 0.9;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.split-text h1,
.split-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 16px;
}

.split-text h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.split-text p {
  margin-bottom: 16px;
  color: #3a454f;
}

.tagline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #60707c;
  margin-bottom: 12px;
}

.media-frame {
  background-color: #e2e7ea;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(19, 24, 28, 0.08);
}

.muted-panel {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 15px 28px rgba(20, 24, 27, 0.08);
}

.accent-panel {
  background-color: #dfe8e2;
  padding: 32px;
  border-radius: 20px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(19, 24, 28, 0.08);
}

.card-media {
  background-color: #e6ecef;
}

.card-body {
  padding: 18px;
}

.section-cta {
  margin-top: 16px;
}

.price {
  font-weight: 700;
  color: #1f6b52;
  margin-top: 8px;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-list li {
  list-style: none;
  padding: 12px 14px;
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(19, 24, 28, 0.06);
}

.full-width-band {
  padding: 52px 0;
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.full-width-band .accent-panel {
  background-color: rgba(247, 246, 243, 0.95);
}

.form-card {
  background-color: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(19, 24, 28, 0.08);
}

.form-card label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 13px;
}

.form-card select,
.form-card input,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd6dc;
  margin-bottom: 16px;
  font-size: 14px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.form-note {
  font-size: 13px;
  color: #5b6872;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.site-footer {
  padding: 40px 0 60px;
  background-color: #1f2a31;
  color: #eef2f4;
  margin-top: 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.disclaimer {
  margin-top: 18px;
  font-size: 13px;
  color: #c8d0d6;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(19, 24, 28, 0.2);
  padding: 18px;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-list li {
  list-style: none;
}

.contact-block {
  background-color: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(19, 24, 28, 0.08);
}

.reference-list {
  margin-top: 14px;
  font-size: 13px;
  color: #c8d0d6;
}

@media (max-width: 860px) {
  .top-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
