* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b2430;
  background: #f6f2ed;
  line-height: 1.6;
}

a {
  color: #0b5b8c;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.88;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: #f6f2ed;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 0.85rem;
  color: #5c4c40;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  padding: 24px 0 36px;
}

.hero-content {
  flex: 1;
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.hero-image {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #dfe6ee;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  border: none;
  background: #0b5b8c;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #f0b429;
  color: #2a1f14;
}

.inline-link {
  font-weight: 600;
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 42px 0;
}

.split.alt {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
}

.split-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #cfd9df;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: #0b5b8c;
}

.section-highlight {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.section-muted {
  background: #efe7df;
  border-radius: 18px;
  padding: 28px;
}

.form-wrap {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.form-panel {
  flex: 1;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd2d9;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  background: #1b2430;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.sticky-cta a {
  color: #ffffff;
}

.footer {
  padding: 32px 20px 48px;
  background: #1b2430;
  color: #f6f2ed;
}

.footer a {
  color: #f0b429;
}

.footer-columns {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-block {
  flex: 1 1 220px;
}

.notice {
  font-size: 0.9rem;
  color: #cfd2d9;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.banner-button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
}

.banner-accept {
  background: #0b5b8c;
  color: #ffffff;
}

.banner-reject {
  background: #efe7df;
  color: #1b2430;
}

.hero h1,
.split-content h2,
.section-highlight h2,
.section-muted h2 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .form-wrap {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
