* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #10212b;
  background: #f6f8f9;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e4e9ed;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a,
.inline-link {
  color: #1a4c6d;
  text-decoration: none;
  font-weight: 600;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: #4f5d66;
  max-width: 320px;
}

.hero {
  background: linear-gradient(120deg, #ffffff 0%, #f1f6f8 100%);
  border-radius: 24px;
  padding: 32px;
  margin-top: 28px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 34, 47, 0.08);
}

.media-box {
  background: #dde6ec;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 320px;
}

.section {
  margin: 40px 0;
}

.section.alt {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #2f6b63;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1f4a5e;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: none;
}

.btn.secondary {
  background: #e9eff3;
  color: #1f4a5e;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #f5f9fb;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.card .media-box {
  min-height: 120px;
  width: 140px;
}

.price {
  font-weight: 700;
  color: #1f4a5e;
  margin-top: 6px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}

.metric {
  background: #f2f6f8;
  border-radius: 14px;
  padding: 16px;
  min-width: 160px;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(16, 33, 43, 0.08);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7d3da;
  background: #f9fbfc;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #295f5f;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.site-footer {
  margin-top: 60px;
  padding: 30px 24px;
  background: #0f232d;
  color: #d9e4ea;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-links a {
  color: #d9e4ea;
  text-decoration: none;
}

.disclaimer {
  font-size: 0.9rem;
  color: #b5c4cb;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 16px 30px rgba(16, 33, 43, 0.18);
  z-index: 999;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  border-left: 6px solid #2f6b63;
}

.policy-aside {
  background: #f1f5f7;
  border-radius: 18px;
  padding: 18px;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
