.page {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f24;
  margin: 0;
  background: #f7f7f4;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 20px 0 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #1f4b2b;
  background: #e3f0e7;
  padding: 4px 8px;
  border-radius: 999px;
}

.hero {
  padding: 24px 0 40px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1;
  min-width: 0;
}

.content h1,
.content h2,
.content h3 {
  margin: 0 0 12px;
}

.content p {
  margin: 0 0 12px;
  line-height: 1.6;
}

.lead {
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  background: #1d4a7a;
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.btn.alt {
  background: #1f4b2b;
}

.btn.light {
  background: #f0f2f5;
  color: #1b1f24;
  border: 1px solid #c9d1d9;
}

.section {
  padding: 44px 0;
}

.section.alt {
  background: #ffffff;
}

.section.deep {
  background: #eef1f5;
}

.image-card,
.img-wrap {
  background: #e5ecf1;
  border-radius: 16px;
  overflow: hidden;
}

.img-wrap {
  min-height: 260px;
}

.img-wrap img,
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e0e4e8;
}

.card .price {
  font-weight: 600;
  color: #1d4a7a;
}

.inline-cta {
  color: #1d4a7a;
  text-decoration: underline;
}

.bg-panel {
  background-image: url("https://images.unsplash.com/photo-1771479755134-9c1e3143c110?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-panel .overlay {
  background: rgba(22, 32, 46, 0.7);
  padding: 32px;
  border-radius: 16px;
}

.form-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #e0e4e8;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 13px;
  color: #3b3f45;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c9d1d9;
  font-size: 14px;
  font-family: inherit;
}

.footer {
  padding: 28px 0 60px;
  font-size: 13px;
  color: #3b3f45;
}

.footer .columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer a {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1f4b2b;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #c9d1d9;
  padding: 16px;
  border-radius: 12px;
  display: none;
  flex-direction: column;
  gap: 12px;
  width: min(360px, 92%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  z-index: 50;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.split .media.small {
  flex: 0.8;
}

.notice {
  font-size: 13px;
  color: #4a525a;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e0e4e8;
}

.table-row span:last-child {
  font-weight: 600;
}

.legal {
  max-width: 860px;
}

@media (max-width: 880px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
