* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f24;
  background: #f7f8fa;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: #ffffff;
  border-bottom: 1px solid #e3e6ea;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #5d6470;
  max-width: 260px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 48px 24px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
}

.hero {
  background: #0f1c2e;
  color: #f7f9fb;
  border-radius: 18px;
  overflow: hidden;
}

.hero .panel {
  padding: 40px;
}

.hero-img {
  background-color: #13263a;
}

.image-frame {
  background-color: #dfe5ec;
  border-radius: 14px;
  overflow: hidden;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1b76ff;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: #ffffff;
  color: #1b1f24;
  border: 1px solid #c9d2de;
}

.section-title {
  font-size: 28px;
  margin: 0 0 12px;
}

.muted {
  color: #5b6572;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #e1e4ea;
}

.card img {
  width: 120px;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: #114a9a;
}

.form-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e1e4ea;
}

.form-box label {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd6df;
  margin-top: 6px;
  font-family: inherit;
}

.split-note {
  background: #eef2f7;
  border-radius: 16px;
}

.bg-section {
  background-image: url("https://images.unsplash.com/photo-1508672019048-805c876b67e2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d3dae4;
  border-radius: 16px;
}

.bg-section .panel {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 18px;
}

.footer {
  padding: 36px 24px;
  background: #10151d;
  color: #e0e6ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  background: #1b76ff;
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid #d6dde7;
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  display: none;
  z-index: 9;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: #e8eef7;
  border-radius: 999px;
  font-size: 12px;
  color: #2c3a4d;
}

.highlight {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e1e4ea;
}

.legal-hero {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 18px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .sticky-cta {
    left: 18px;
    right: auto;
  }
}
