* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1f;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1f4fd1;
  text-decoration: none;
}

img {
  object-fit: cover;
  display: block;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

header {
  padding: 24px 6%;
  background: #f1eee8;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a4c3c;
  background: #efe2d6;
  padding: 6px 10px;
  border-radius: 16px;
}

.hero {
  padding: 46px 6% 64px;
  background: #f6f4f1;
}

.split {
  display: flex;
  gap: 42px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1;
  min-width: 0;
}

.split-media {
  background: #d9d4cd;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 22px;
}

.split-media img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.section {
  padding: 54px 6%;
}

.section.alt {
  background: #efeae4;
}

.section.background-splash {
  background-image: url("https://images.unsplash.com/photo-1444653614773-995cb1ef9efa?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.section.background-splash::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 24, 28, 0.6);
}

.section.background-splash > * {
  position: relative;
  z-index: 1;
}

.section.background-splash .button.secondary {
  background: #fff;
  color: #1d1d1f;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  color: #6c5d4d;
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: #1c1c1e;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f4fd1;
  color: #fff;
  font-weight: 600;
  border: none;
}

.button.secondary {
  background: #3f352b;
}

.inline-cta {
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card-image {
  background: #cfc6bc;
  border-radius: 14px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
  color: #1f4fd1;
}

.two-column {
  display: flex;
  gap: 26px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill {
  background: #ded6ce;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.form-box {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c1b9;
  font-family: inherit;
  margin-bottom: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 5;
}

.footer {
  padding: 40px 6% 50px;
  background: #1d1d1f;
  color: #efeae4;
}

.footer a {
  color: #dcd6ff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #1f4fd1;
  color: #fff;
}

.cookie-actions .reject {
  background: #d9d2cc;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight-box {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
}

@media (max-width: 920px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .two-column {
    flex-direction: column;
  }

  .sticky-cta {
    right: 14px;
    left: 14px;
  }

  .button {
    width: 100%;
  }
}
