* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1f23;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: #1a4d8f;
  text-decoration: none;
}

.page {
  width: 100%;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background: #ffffff;
  border-bottom: 1px solid #e4e1db;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.3px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
}

.ad-label {
  font-size: 0.8rem;
  color: #5d6168;
  max-width: 220px;
  text-align: right;
}

.split {
  display: flex;
  gap: 36px;
  padding: 64px 6%;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split.tight {
  padding-top: 32px;
  padding-bottom: 32px;
}

.split > .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin: 0;
  line-height: 1.2;
}

.hero-text p {
  margin: 0;
  font-size: 1.1rem;
  color: #3b3f45;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1a4d8f;
  background: #1a4d8f;
  color: #ffffff;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  color: #1a4d8f;
}

.image-frame {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: #d9d3c7;
  border-radius: 18px;
  overflow: hidden;
}

.inline-image {
  height: 260px;
}

.section-title {
  font-size: 1.7rem;
  margin: 0 0 12px;
}

.muted {
  color: #555b63;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #ece8e1;
}

.card .image-frame {
  min-height: 180px;
  background: #cdd7dd;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a4d8f;
}

.note {
  font-size: 0.9rem;
  color: #6a717a;
}

.highlight {
  background: #f0efe9;
}

.bg-route {
  background: #1f2a35 url("https://images.unsplash.com/photo-1500534623283-312aade485b7?w=1400&q=80") center / cover no-repeat;
  color: #ffffff;
}

.bg-route .btn {
  border-color: #ffffff;
  background: #ffffff;
  color: #1f2a35;
}

.form-panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e6e2db;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfd3d8;
  font-size: 0.95rem;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e6e2db;
  padding: 20px;
  gap: 12px;
  display: flex;
  flex-direction: column;
}

.footer {
  background: #0f1419;
  color: #d3d7dd;
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer .link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer a {
  color: #d3d7dd;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e6e2db;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.page-hero {
  padding: 54px 6% 0;
}

.page-hero .image-frame {
  min-height: 240px;
}

.contact-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #ece8e1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.simple-section {
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-text {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #ece8e1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.two-column {
  display: flex;
  gap: 24px;
}

.two-column .col {
  flex: 1;
}

@media (max-width: 960px) {
  .split,
  .two-column {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .nav-right {
    flex-direction: column;
    align-items: flex-start;
  }
}
