* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1e2430;
  background-color: #f6f7fb;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: #1b4e80;
  text-decoration: none;
}

header {
  padding: 28px 6vw 12px;
  background: #f6f7fb;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: #6a7585;
}

.hero {
  position: relative;
  padding: 40px 6vw 80px;
}

.hero-panel {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-copy h1 {
  font-size: 2.6rem;
  margin: 0 0 12px;
}

.hero-copy p {
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-image {
  flex: 1 1 360px;
  min-height: 340px;
  border-radius: 28px;
  overflow: hidden;
  background-color: #dfe4ee;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section.highlight {
  background: #ffffff;
}

.section-title {
  font-size: 1.9rem;
  margin: 0;
}

.asym-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
}

.asym-text p {
  line-height: 1.7;
}

.asym-image {
  flex: 1 1 300px;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #d8e2f1;
  margin-top: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #f1f3f8;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-image {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #cfd8e6;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  color: #1b4e80;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: #1b4e80;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: #1b4e80;
  border: 1px solid #1b4e80;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  background: #f1f6fc;
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.timeline-item.offset {
  margin-left: 12%;
}

.quote {
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

.form-wrap {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

select,
input {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9d2e3;
  font-size: 1rem;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #1e2430;
  color: #fff;
  padding: 16px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta .btn {
  background: #ffffff;
  color: #1e2430;
}

footer {
  background: #101828;
  color: #e3e8f4;
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer a {
  color: #c8d7f2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 200px;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.notice {
  background: #f6f7fb;
  color: #4a5565;
  padding: 12px 16px;
  border-radius: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  padding: 50px 6vw 24px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: 2.2rem;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  border-radius: 26px;
  padding: 28px;
}

.content-block p,
.content-block li {
  line-height: 1.7;
}

.stack-gap {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.address-block {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.highlight-bg {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.highlight-bg .section-title,
.highlight-bg p {
  color: #ffffff;
}
