* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d1f22;
  background-color: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #153a63;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #153a63;
  outline-offset: 2px;
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2ded8;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 6%;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  color: #6f6b66;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #f1ede7;
}

nav a:hover {
  background-color: #dfe6f0;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 70vh;
}

.hero-text,
.hero-media {
  flex: 1 1 50%;
  min-width: 320px;
  padding: 60px 6%;
}

.hero-text {
  background-color: #f9f4ee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-media {
  background-color: #d3d7dc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 70px 6%;
  gap: 32px;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-text,
.section-media {
  flex: 1 1 50%;
  min-width: 300px;
}

.section-media {
  background-color: #d6d9d1;
  padding: 16px;
}

.section-media img {
  width: 100%;
  height: 360px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 260px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  background-color: #d8d8e0;
  border-radius: 14px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: #153a63;
}

.split-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 70px 6%;
  background-color: #ede8e2;
}

.split-box {
  flex: 1 1 320px;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 20px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #153a63;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cta-button.secondary {
  background-color: #c54c3f;
}

.cta-button:hover {
  background-color: #0d2b4d;
}

.cta-inline {
  text-decoration: underline;
}

.form-section {
  background-color: #ffffff;
  padding: 70px 6%;
}

.lead-form {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #c9c6c2;
}

.sticky-cta {
  position: sticky;
  bottom: 24px;
  margin: 0 6% 40px;
  width: fit-content;
  z-index: 5;
}

.page-hero {
  padding: 60px 6%;
  background-color: #f3efe8;
}

.content-wrap {
  padding: 50px 6%;
}

.legal-text {
  max-width: 900px;
}

.footer {
  background-color: #1f2226;
  color: #f5f1eb;
  padding: 40px 6%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer a {
  color: #f5f1eb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  border-top: 1px solid #ded9d2;
  padding: 16px 6%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

.image-wrap {
  background-color: #d1d6dc;
}
