* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1a4b6b;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  width: 100%;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  background: #fdfcf9;
  border-bottom: 1px solid #e7e2dc;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: #7c5a2c;
  background: #f1e8da;
  padding: 6px 10px;
  border-radius: 999px;
}

.section {
  padding: 70px 6%;
}

.section-alt {
  background: #ffffff;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .visual {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: #6c7c82;
  margin-bottom: 10px;
}

.headline {
  font-size: 2.3rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.lead {
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #1a4b6b;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: #f1e8da;
  color: #1f2a2e;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid #1a4b6b;
}

.image-frame {
  width: 100%;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background: #e6e0d6;
}

.image-frame.tall {
  height: 460px;
}

.bg-panel {
  height: 360px;
  border-radius: 18px;
  background-color: #dfe7ea;
  background-image: url("https://images.unsplash.com/photo-1497493292307-31c376b6e479?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.stat {
  background: #f1e8da;
  padding: 16px 18px;
  border-radius: 12px;
  flex: 1;
  min-width: 150px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: #fdfcf9;
  border: 1px solid #e7e2dc;
  border-radius: 16px;
  padding: 18px;
  flex: 1;
  min-width: 220px;
}

.card .price {
  font-weight: 700;
  margin-top: 10px;
  color: #1a4b6b;
}

.form-shell {
  background: #fdfcf9;
  border: 1px solid #e7e2dc;
  border-radius: 16px;
  padding: 24px;
}

.form-shell label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-shell select,
.form-shell input,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cfc6bb;
  margin-bottom: 16px;
  background: #ffffff;
}

.form-shell textarea {
  min-height: 120px;
}

.testimonial {
  border-left: 4px solid #1a4b6b;
  padding-left: 16px;
  margin-top: 18px;
}

.footer {
  background: #1f2a2e;
  color: #fdfcf9;
  padding: 40px 6%;
}

.footer a {
  color: #f1e8da;
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 180px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #fdfcf9;
  padding: 14px 6%;
  border-top: 1px solid #e7e2dc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 320px;
  background: #ffffff;
  border: 1px solid #e7e2dc;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.legal-block {
  background: #fdfcf9;
  border: 1px solid #e7e2dc;
  border-radius: 12px;
  padding: 18px;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .headline {
    font-size: 2rem;
  }

  .image-frame,
  .image-frame.tall {
    height: 300px;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
