* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1e1e;
  background: #f7f6f3;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6%;
  background: #f7f6f3;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  background: #efe7dc;
  padding: 6px 10px;
  border-radius: 18px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding-bottom: 80px;
}

.section {
  padding: 0 6%;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 36px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero {
  padding-top: 12px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 28px;
  background: #1f5a4d;
  color: #fff;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #e6f1ee;
  color: #1f5a4d;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: underline;
}

.image-wrap {
  background: #d9d3c7;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .image-wrap {
  height: 160px;
}

.card .btn {
  align-self: flex-start;
}

.price {
  font-weight: 700;
  color: #1f5a4d;
}

.highlight {
  background: #efe7dc;
  padding: 28px;
  border-radius: 20px;
}

.layered {
  background: #1f5a4d;
  color: #fff;
  padding: 48px 6%;
}

.layered .split {
  gap: 30px;
}

.layered .image-wrap {
  background: #2d6b5d;
}

.form-area {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7d4cd;
  font-size: 1rem;
}

footer {
  padding: 40px 6%;
  background: #111714;
  color: #f7f6f3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-columns div {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 0.9rem;
  opacity: 0.85;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #1f5a4d;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  z-index: 9;
  font-size: 0.95rem;
}

.page-title {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-block {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
}

.address-box {
  background: #efe7dc;
  padding: 24px;
  border-radius: 18px;
}

.bg-analytics {
  background-color: #22352f;
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 70px 6%;
}

.bg-analytics .highlight {
  background: rgba(17, 23, 20, 0.7);
  color: #fff;
}

@media (max-width: 860px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    text-align: center;
  }
}
