* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d2428;
  background: #f6f4f0;
  line-height: 1.6;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: #1c4a6e;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: #1c4a6e;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 24px;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  padding: 24px 0 12px;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  background: #f0e6d8;
  padding: 6px 10px;
  border-radius: 8px;
  color: #3b3b3b;
}

.hero {
  padding: 40px 0 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.media-box {
  background: #d9dfe4;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  align-items: center;
}

.inline-cta {
  border-bottom: 1px solid #1c4a6e;
  padding-bottom: 2px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #162026;
  color: #f0f5f7;
}

.section.dark a {
  color: #b7d4ee;
}

.tagline {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7a6d5c;
}

.title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 12px 0 16px;
}

.lead {
  font-size: 1.1rem;
  max-width: 520px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.dark {
  background: #202c33;
  color: #f2f5f7;
}

.card-image {
  background: #d7dfe6;
  border-radius: 12px;
  overflow: hidden;
  height: 160px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.steps .step {
  padding: 16px;
  background: #f0ece6;
  border-radius: 12px;
}

.quote {
  font-style: italic;
  background: #f6efe5;
  padding: 16px;
  border-left: 4px solid #b58959;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9cdd1;
  font-family: inherit;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1c4a6e;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 10;
}

.footer {
  padding: 40px 0;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 12px 0 20px;
}

.disclaimer {
  background: #f0e6d8;
  padding: 16px;
  border-radius: 10px;
  margin-top: 16px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  max-width: 360px;
  z-index: 11;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.ghost-button {
  background: #e7ecf2;
  color: #1c4a6e;
}

.page-hero {
  padding: 32px 0 20px;
}

.highlight-block {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .nav-links {
    justify-content: flex-start;
  }
}
