* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: #1f2328;
  background: #f6f4f1;
}

a {
  color: #114a8a;
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus {
  outline: 2px solid #114a8a;
  outline-offset: 2px;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

header {
  padding: 28px 0 10px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: #5b5e63;
  padding: 6px 12px;
  border: 1px dashed #5b5e63;
  border-radius: 999px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #114a8a;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
}

.sticky-cta:hover {
  background: #0d3c70;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: space-between;
  padding: 40px 0;
  border-bottom: 1px solid #e1ded8;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-text h1,
.split-text h2,
.split-text h3 {
  margin-top: 0;
}

.tagline {
  font-size: 1.1rem;
  color: #4a4f56;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  background: #114a8a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: #f0b429;
  color: #1f2328;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #114a8a;
  color: #114a8a;
}

.media-box {
  background: #d6dbe3;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

.bg-slate {
  background-color: #d6dbe3;
}

.bg-sand {
  background-color: #e3dfd6;
}

.bg-mist {
  background-color: #dfe6db;
}

.bg-lilac {
  background-color: #d9d8e5;
}

.bg-ice {
  background-color: #d8e0e6;
}

.bg-warm {
  background-color: #e4ded7;
}

.bg-cloud {
  background-color: #dde3e9;
}

.bg-amber {
  background-color: #fff3d6;
}

.bg-stone {
  background-color: #e7e0d7;
}

.bg-olive {
  background-color: #dce5e1;
}

.bg-tan {
  background-color: #e6e1d8;
}

.bg-steel {
  background-color: #dfe4ea;
}

.media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 240px;
  min-width: 220px;
  box-shadow: 0 12px 26px rgba(31, 35, 40, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .media-box {
  min-height: 160px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #114a8a;
}

.note {
  font-size: 0.95rem;
  color: #4a4f56;
}

.metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.metric {
  background: #fff5df;
  padding: 14px 16px;
  border-radius: 12px;
  min-width: 160px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(31, 35, 40, 0.12);
}

label {
  font-weight: 600;
}

input,
select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9cdd3;
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer {
  padding: 30px 0 60px;
  color: #5b5e63;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.legal-box {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #1f2328;
  color: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #f0b429;
  color: #1f2328;
}

.cookie-reject {
  background: #fff;
  color: #1f2328;
}

.contact-block {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.section-cta {
  margin-top: 16px;
}

.image-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.image-strip .media-box {
  flex: 1 1 220px;
  min-height: 140px;
}

.thanks-highlight {
  background: #fff5df;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
