* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a2f;
  background-color: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1f4c73;
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: #121a1f;
  color: #eef4f6;
  padding: 12px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  max-width: 420px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  color: #eef4f6;
}

.section {
  padding: 70px 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 420px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12rem;
  color: #6b7478;
  margin-bottom: 12px;
}

.hero {
  background: #e8efe8;
}

.hero-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(18, 26, 31, 0.12);
}

.hero-title {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  margin: 0 0 16px;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f4c73;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #edf1f3;
  color: #1f2a2f;
}

.inline-cta {
  font-weight: 600;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background-color: #dfe6ea;
}

.bg-mist {
  background-color: #d8e1e6;
}

.bg-sand {
  background-color: #e3e7dc;
}

.bg-linen {
  background-color: #e4dfd6;
}

.bg-cloud {
  background-color: #dfe7ec;
}

.bg-warm {
  background-color: #e9e0d7;
}

.bg-leaf {
  background-color: #dfe6da;
}

.bg-bridge {
  background-color: #d7e1e8;
}

.bg-note {
  background-color: #e0e6ec;
}

.image-frame.tall {
  min-height: 360px;
}

.image-frame.small {
  min-height: 240px;
}

.highlight {
  background: #f1ebe4;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(18, 26, 31, 0.08);
}

.card img {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  margin-top: 10px;
  color: #1f4c73;
}

.muted {
  color: #5b666b;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  background: #13222b;
  color: #ffffff;
}

.cta-band .button {
  background: #f5c248;
  color: #1f2a2f;
}

.form-wrap {
  background: #ffffff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(18, 26, 31, 0.1);
}

.form-wrap label {
  display: block;
  font-weight: 600;
  margin-top: 12px;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #c6ced3;
  font-family: inherit;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  margin-top: 12px;
}

.footer {
  background: #0f161b;
  color: #d6dde1;
  padding: 40px 0;
}

.footer a {
  color: #d6dde1;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-columns div {
  flex: 1 1 220px;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 12px;
  box-shadow: 0 12px 24px rgba(18, 26, 31, 0.2);
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 10;
}

.sticky-cta .button {
  padding: 8px 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(18, 26, 31, 0.2);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .button {
  padding: 8px 14px;
  font-size: 0.9rem;
}

.page-hero {
  background: #e2e9ee;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 12px;
  border-bottom: 1px solid #d8dee2;
  text-align: left;
}

.table th {
  background: #f1f4f6;
}

.note-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  border-left: 4px solid #1f4c73;
}

.spacer {
  height: 16px;
}

.link-button {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #1f4c73;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}
