* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1e1e1e;
  background: #f6f7f9;
  line-height: 1.6;
}

a {
  color: #1446a0;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e3e6ea;
}

.wrap {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 24px 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.ad-label {
  background: #ffedd5;
  color: #7c2d12;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
}

.brand {
  font-weight: 700;
  font-size: 20px;
}

.hero {
  background: #111827;
  color: #f8fafc;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.half {
  flex: 1;
}

.hero h1,
.section h2 {
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1446a0;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 26px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  gap: 8px;
}

.button.secondary {
  background: #e2e8f0;
  color: #0f172a;
}

.button:hover {
  opacity: 0.9;
}

.section {
  padding: 48px 0;
  background: #ffffff;
}

.section.alt {
  background: #eef2f6;
}

.background-panel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 32px;
  background: #cbd5e1;
}

.background-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.background-panel .panel-content {
  position: relative;
  z-index: 1;
  background: rgba(15, 23, 42, 0.7);
  color: #f8fafc;
  padding: 20px 24px;
  border-radius: 18px;
  max-width: 520px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.price {
  font-weight: 700;
  font-size: 18px;
  margin-top: 8px;
}

.image-card {
  background: #dfe5ec;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inline-note {
  background: #fef3c7;
  padding: 16px;
  border-radius: 14px;
}

.form-block {
  background: #0f172a;
  color: #f8fafc;
  padding: 28px;
  border-radius: 20px;
}

.form-block label {
  display: block;
  margin: 12px 0 6px;
}

.form-block input,
.form-block select,
.form-block textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
}

.form-block button {
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #111827;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.28);
  z-index: 20;
}

.sticky-cta a {
  color: #ffffff;
}

.footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 36px 0;
}

.footer a {
  color: #93c5fd;
}

.legal-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-grid div {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.page-header {
  background: #ffffff;
  padding: 32px 0 12px;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notice {
  font-size: 14px;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: center;
  }
}
