* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f7f6f2;
}

a {
  color: #0b4a6f;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.85;
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e1e1e1;
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: #4c4c4c;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 70px 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1;
  min-width: 280px;
}

.split .media {
  flex: 1;
  min-width: 280px;
}

.section-muted {
  background-color: #eceae4;
}

.section-bg {
  background-color: #d6dde3;
  background-image: url("https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-bg .content,
.section-bg .media {
  background-color: rgba(255, 255, 255, 0.92);
  padding: 20px;
  border-radius: 16px;
}

.section-dark {
  background-color: #1f2a33;
  color: #f5f5f5;
}

.section-dark a {
  color: #b2e6ff;
}

.image-frame {
  background-color: #d8d6cf;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image {
  height: 360px;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: stretch;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 140px;
  height: 120px;
  border-radius: 12px;
}

.service-card .details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price {
  font-weight: 700;
  color: #0b4a6f;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.button,
button {
  background-color: #0b4a6f;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background-color: #f0c75e;
  color: #1b1b1b;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #e0e7ec;
  color: #1f2a33;
  font-size: 0.85rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding-left: 24px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0b4a6f;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9c9c9;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: #4c4c4c;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffffff;
  padding: 14px 18px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.sticky-cta a {
  background-color: #0b4a6f;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

footer {
  background-color: #10161c;
  color: #d6dbe0;
  padding: 50px 28px;
}

.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 60px 28px;
  background-color: #eceae4;
}

.page-hero .split {
  padding: 0;
}

.simple-panel {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
