* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2428;
  background-color: #f7f4ef;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8vw;
  gap: 12px;
  background-color: #f1ede6;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: #4a545b;
}

.section {
  display: flex;
  flex-direction: column;
  padding: 70px 8vw;
  gap: 28px;
}

.section.alt {
  background-color: #ffffff;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-col,
.split .image-col {
  flex: 1 1 320px;
  min-width: 280px;
}

.headline {
  font-size: 2.6rem;
  margin: 0 0 12px;
  line-height: 1.1;
}

.subhead {
  font-size: 1.1rem;
  color: #3d464d;
  margin: 0;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: #dfe7e2;
  font-size: 0.85rem;
  letter-spacing: 0.4px;
}

.image-frame {
  background-color: #d9d5cd;
  border-radius: 18px;
  overflow: hidden;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: #1f2428;
  color: #ffffff;
  font-weight: 600;
}

.btn.secondary {
  background-color: #e2d7c9;
  color: #1f2428;
}

.inline-link {
  color: #204f7a;
  border-bottom: 1px solid #204f7a;
  padding-bottom: 2px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(31, 36, 40, 0.08);
}

.card .image-frame {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.quote {
  font-style: italic;
  background-color: #f1ede6;
  padding: 18px;
  border-radius: 14px;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 18px 30px rgba(31, 36, 40, 0.1);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c9c4bc;
  font-size: 1rem;
  font-family: inherit;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.two-col .col {
  flex: 1 1 260px;
}

.footer {
  margin-top: auto;
  padding: 40px 8vw;
  background-color: #1f2428;
  color: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f7f4ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d5cdc2;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 16px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 50;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 90px;
  background-color: #204f7a;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 40;
}

.tagline {
  font-size: 0.95rem;
  color: #4a545b;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.note {
  background-color: #e8ece7;
  padding: 14px;
  border-radius: 12px;
}

.legal {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1rem;
  line-height: 1.6;
}

.callout {
  background-color: #f1ede6;
  border-radius: 16px;
  padding: 18px;
}

@media (max-width: 760px) {
  .headline {
    font-size: 2.1rem;
  }

  .topbar {
    padding: 16px 6vw;
  }

  .section {
    padding: 60px 6vw;
  }
}
