* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: #1c232b;
  background-color: #f5f7fb;
  line-height: 1.6;
}

a {
  color: #1f4b7b;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.topbar {
  background: #101826;
  color: #f7f9ff;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border: 1px solid #5f6b7b;
  border-radius: 20px;
  color: #dbe5f6;
}

.hero {
  padding: 42px 0 32px;
  background: #eef3fb;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 28px;
  background: #1f4b7b;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background: #f0b429;
  color: #2a2000;
}

.btn.ghost {
  background: #e8eef8;
  color: #1f4b7b;
}

.section {
  padding: 44px 0;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(16, 24, 38, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 170px;
}

.price {
  font-weight: 700;
  color: #0a3a6d;
}

.layered {
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 24px 40px rgba(16, 24, 38, 0.08);
}

.section-accent {
  background: #101826;
  color: #f7f9ff;
}

.section-accent a {
  color: #f0d287;
}

.image-wrap {
  background-color: #d9e2f3;
  border-radius: 18px;
  overflow: hidden;
}

.form-wrap {
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(16, 24, 38, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd6e5;
  font-size: 0.95rem;
}

.footer {
  margin-top: auto;
  background: #0e1522;
  color: #e8edf7;
  padding: 26px 0 60px;
}

.footer .split {
  align-items: flex-start;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1f4b7b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 50;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111a28;
  color: #e8edf7;
  padding: 16px 0;
  z-index: 60;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1526304640581-d334cdbbf45e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 36px;
  color: #f7f9ff;
}

.background-panel .layered {
  background: rgba(16, 24, 38, 0.7);
  color: #f7f9ff;
}
