* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2430;
  background: #f6f7fb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  padding: 20px 6%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-bottom: 1px solid #e4e7f0;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  background: #edf2ff;
  color: #2c3a64;
  padding: 6px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

.section {
  padding: 70px 6%;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero-title {
  font-size: 40px;
  margin: 0 0 16px;
}

.lead {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  background: #1f3b6e;
  color: #ffffff;
  font-weight: 600;
  border: none;
}

.btn-secondary {
  background: #3b8fd8;
}

.inline-cta {
  color: #1f3b6e;
  font-weight: 600;
  text-decoration: underline;
}

.img-frame {
  background: #dfe4f1;
  border-radius: 18px;
  overflow: hidden;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 24px rgba(31, 59, 110, 0.08);
}

.price-tag {
  font-weight: 700;
  color: #1f3b6e;
}

.tone-light {
  background: #ffffff;
}

.tone-dark {
  background: #1f2430;
  color: #f4f6ff;
}

.tone-dark .btn {
  background: #f4f6ff;
  color: #1f2430;
}

.tone-accent {
  background: #e9f1ff;
}

.list {
  padding-left: 18px;
}

.split-bg {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.form-box {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 26px rgba(31, 59, 110, 0.1);
}

.form-box label {
  font-weight: 600;
  font-size: 14px;
}

.form-box input,
.form-box select {
  padding: 10px 12px;
  border: 1px solid #cfd5e5;
  border-radius: 8px;
  font-size: 15px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #1f3b6e;
  color: #ffffff;
  padding: 14px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer {
  padding: 40px 6%;
  background: #0f131a;
  color: #e6e9f2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #e6e9f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(31, 59, 110, 0.15);
  z-index: 10;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.simple-table {
  width: 100%;
  border-collapse: collapse;
}

.simple-table td,
.simple-table th {
  border-bottom: 1px solid #d9deea;
  padding: 12px 8px;
  text-align: left;
}

.legal-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(31, 59, 110, 0.08);
}

.small-note {
  font-size: 14px;
  color: #5a657a;
}
