* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #14212a;
  background: #f4f6f8;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #0b4b7a;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: #ffffff;
  border-bottom: 1px solid #e4e8ec;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 13px;
  color: #5c6a72;
  padding: 4px 10px;
  border: 1px solid #d7dde2;
  border-radius: 20px;
  background: #f8fafb;
}

.hero {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 24px;
  padding: 50px 40px;
  background: #e8eef2;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.1;
}

.hero-text p {
  margin: 0;
  font-size: 18px;
  color: #2a3b45;
}

.hero-media {
  flex: 1;
  background: #c7d3db;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
}

.section {
  padding: 50px 40px;
}

.split {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
}

.split-text h2,
.split-text h3 {
  margin-top: 0;
}

.split-media {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #d2dee4;
  min-height: 260px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-media {
  background: #cfd9df;
  border-radius: 12px;
  overflow: hidden;
  height: 160px;
}

.price {
  font-weight: 700;
  color: #0b4b7a;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: #0b4b7a;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.button--soft {
  background: #e0ecf4;
  color: #0b4b7a;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-weight: 600;
  font-size: 14px;
}

.form-wrap select,
.form-wrap input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd6dd;
  font-size: 15px;
}

.footer {
  margin-top: auto;
  padding: 30px 40px;
  background: #111f27;
  color: #e6edf2;
}

.footer a {
  color: #d7e8f5;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disclaimer {
  font-size: 13px;
  color: #b7c2cb;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1a7fb9;
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 60;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.note-block {
  background: #0f2f3f;
  color: #e3edf2;
  padding: 22px;
  border-radius: 16px;
}

.muted {
  color: #5c6a72;
}

.inline-cta {
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-blocks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 220px;
}

.legal-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
}

.section-alt {
  background: #ffffff;
}

.section-dark {
  background: #0f2f3f;
  color: #e9f1f6;
}

.section-dark a {
  color: #cfe7f7;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .split--reverse {
    flex-direction: column;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
