* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1d;
  background: #f7f5f1;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1f4b99;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 24px 0 16px;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}

.ad-label {
  font-size: 12px;
  background: #efe4d0;
  color: #4a3a22;
  padding: 4px 10px;
  border-radius: 999px;
}

.hero {
  padding: 40px 0 60px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #ffffff;
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  color: #7c7266;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-weight: 700;
}

p {
  line-height: 1.6;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #1f4b99;
  color: #ffffff;
  background: #1f4b99;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: #1f4b99;
}

.btn:hover,
.btn:focus {
  background: #17346c;
  color: #ffffff;
  border-color: #17346c;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: #1f4b99;
  color: #ffffff;
}

.image-frame {
  background: #d8d2c8;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fdfcf9;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #e5ded2;
}

.price {
  font-weight: 700;
  color: #1f4b99;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1efe9;
  font-size: 12px;
  color: #4b463e;
}

.form-panel {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e6dfd3;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d6cfc3;
  font-size: 14px;
  font-family: inherit;
}

.form-row {
  margin-bottom: 14px;
}

.form-note {
  font-size: 13px;
  color: #5b544b;
}

.status {
  margin-top: 10px;
  font-size: 13px;
  color: #1f4b99;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
}

.sticky-cta a {
  background: #0f7a4a;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
}

.sticky-cta a:hover,
.sticky-cta a:focus {
  background: #0b5c37;
}

.footer {
  padding: 40px 0;
  background: #1b1a17;
  color: #f3f1ec;
  margin-top: auto;
}

.footer a {
  color: #f3f1ec;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.legal-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid #d6cfc3;
  padding: 16px;
  border-radius: 12px;
  max-width: 320px;
  z-index: 30;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cookie-actions .btn {
  flex: 1;
  padding: 8px 12px;
  font-size: 13px;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inline-link {
  font-weight: 600;
}

.small {
  font-size: 13px;
  color: #6a635a;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 20px auto 0;
    text-align: center;
  }
}
