* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d1f21;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: #1b4d89;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6%;
  background: #0f1f2d;
  color: #f7f4ef;
}

.nav-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 13px;
  color: #c6d1dd;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #f7f4ef;
  font-size: 14px;
}

.hero {
  padding: 40px 6% 50px;
  background: #f7f4ef;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-panel h1 {
  font-size: 38px;
  margin: 0;
}

.hero-panel p {
  margin: 0;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #1b4d89;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #f7b267;
  color: #1d1f21;
}

.btn.outline {
  background: transparent;
  border: 1px solid #1b4d89;
  color: #1b4d89;
}

.section {
  padding: 50px 6%;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #1d2937;
  color: #f7f4ef;
}

.section h2 {
  margin-top: 0;
  font-size: 30px;
}

.section p {
  margin: 0 0 14px;
}

.image-frame {
  background: #d9dee5;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #f1f3f6;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card strong {
  font-size: 18px;
}

.card .price {
  font-weight: 700;
  color: #1b4d89;
}

.split-panel {
  background: #f0ebe4;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1b4d89;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c5cbd3;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  background: #0f1f2d;
  color: #c6d1dd;
  padding: 24px 6%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #c6d1dd;
  font-size: 14px;
}

.notice {
  font-size: 13px;
  color: #c6d1dd;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  border-radius: 999px;
  padding: 12px 18px;
  background: #1b4d89;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid #d1d7df;
  border-radius: 16px;
  padding: 16px;
  max-width: 360px;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.inline-cta {
  font-weight: 600;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffe3c5;
  color: #1d1f21;
  font-size: 13px;
  font-weight: 600;
}

.legal-block {
  background: #f1f3f6;
  border-radius: 18px;
  padding: 20px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-grid > div {
  flex: 1 1 260px;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.highlight {
  background: #ffe3c5;
  padding: 14px;
  border-radius: 14px;
}

.split-note {
  background: #f1f3f6;
  padding: 20px;
  border-radius: 16px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service-item {
  display: flex;
  gap: 20px;
  align-items: stretch;
  flex-wrap: wrap;
}

.service-item .service-body {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-item .service-media {
  flex: 1 1 240px;
}

.thanks-message {
  font-size: 20px;
  margin: 0;
}

.page-header {
  padding: 42px 6% 24px;
  background: #f0ebe4;
}

.page-header h1 {
  margin: 0;
  font-size: 34px;
}

@media (max-width: 820px) {
  .sticky-cta {
    left: 18px;
    right: auto;
  }
}
