.site {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f6f7f9;
  margin: 0;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e6ea;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 20px;
}

.ad-label {
  font-size: 12px;
  color: #5d6166;
  max-width: 320px;
}

.hero {
  display: flex;
  gap: 24px;
  align-items: stretch;
  padding: 36px 24px;
}

.split {
  display: flex;
  gap: 24px;
  align-items: stretch;
  padding: 32px 24px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(17, 23, 29, 0.08);
}

.panel.light {
  background-color: #eef2f7;
}

.panel.dark {
  background-color: #1f2a36;
  color: #ffffff;
}

.panel h1,
.panel h2,
.panel h3 {
  margin-top: 0;
}

.media-box {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  background-color: #d9dee5;
  min-height: 320px;
}

.media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.tag {
  background-color: #ffffff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid #e0e6ed;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  background-color: #1b4d89;
  color: #ffffff;
  font-weight: 600;
  border: none;
}

.btn.secondary {
  background-color: #f4a261;
  color: #1b1b1b;
}

.btn.ghost {
  background-color: transparent;
  border: 1px solid #1b4d89;
  color: #1b4d89;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e3e7ec;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1b4d89;
}

.inline-link {
  border-bottom: 1px solid #1b4d89;
  padding-bottom: 2px;
}

.form-section {
  display: flex;
  gap: 24px;
  align-items: stretch;
  padding: 32px 24px;
}

.form-panel {
  flex: 1;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e3e7ec;
}

.form-panel label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccd5df;
  margin-bottom: 16px;
}

.form-note {
  font-size: 13px;
  color: #5f6a74;
}

.footer {
  padding: 32px 24px;
  background-color: #1f2a36;
  color: #ffffff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-col {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 13px;
  color: #c9d1d9;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #d9e0e7;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  font-size: 14px;
  color: #3d434a;
}

.page-title {
  margin: 0;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.highlight {
  background-color: #f2f6fb;
  border-radius: 16px;
  padding: 18px;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .form-section {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 16px 24px 0;
  }
}
