* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1b2733;
  background-color: #f6f8fb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 18px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border-bottom: 1px solid #dbe3ec;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 14px;
}

.site-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.site-nav a:hover {
  border-color: #1b2733;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 6px;
  background-color: #ffe6c9;
  font-weight: 600;
}

.section {
  padding: 60px 6vw;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-media {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero {
  min-height: 520px;
  color: #ffffff;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 21, 32, 0.72);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #1b2733;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.alt {
  background-color: #ffffff;
  color: #1b2733;
  border: 1px solid #1b2733;
}

.btn:hover {
  transform: translateY(-1px);
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  background-color: #e2e9f2;
  min-height: 260px;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 25, 38, 0.7);
}

.section-bg .split {
  position: relative;
  z-index: 1;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 260px;
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(20, 36, 62, 0.08);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.inline-cta {
  color: #2b5bd7;
  font-weight: 600;
}

.form-section {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 12px 24px rgba(19, 33, 54, 0.08);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  flex: 1 1 240px;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9d3df;
  font-size: 15px;
  font-family: inherit;
}

.footer {
  background-color: #0f1623;
  color: #e5ebf5;
  padding: 40px 6vw;
  margin-top: auto;
}

.footer a {
  color: #e5ebf5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.disclaimer {
  font-size: 13px;
  margin-top: 20px;
  color: #c7d0dd;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #1b2733;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(15, 24, 40, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  max-width: 820px;
  z-index: 20;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 90px;
  background-color: #2b5bd7;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 20px rgba(43, 91, 215, 0.3);
  z-index: 15;
}

.note {
  background-color: #f0f4fb;
  border-left: 4px solid #2b5bd7;
  padding: 16px;
  border-radius: 12px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 260px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
