* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1b3c59;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 64px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 22px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.ad-label {
  font-size: 12px;
  color: #5a5a5a;
  border: 1px solid #c9c4be;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f2efe9;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 36px 0;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 340px;
}

.panel h1,
.panel h2 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.panel h3 {
  font-size: 20px;
  margin: 14px 0 8px;
}

.panel p {
  margin-bottom: 14px;
}

.image-frame {
  background: #d8d3cc;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame.tall img {
  height: 420px;
}

.image-frame.wide img {
  height: 360px;
}

.section {
  padding: 34px 0;
}

.section--tint {
  background: #ffffff;
  border-radius: 20px;
  padding: 34px 28px;
}

.section--dark {
  background: #1b3c59;
  color: #f7f5f2;
  border-radius: 20px;
  padding: 32px;
}

.section--dark a {
  color: #f7f5f2;
  text-decoration: underline;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  background: #1b3c59;
  color: #ffffff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.secondary {
  background: #e0d7cc;
  color: #1b1b1b;
}

.button:hover,
.button:focus {
  background: #244b6d;
}

.inline-link {
  text-decoration: underline;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: #1b3c59;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  border-left: 3px solid #b89f7b;
  padding-left: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #b8b1a9;
  font-size: 15px;
  background: #ffffff;
}

textarea {
  min-height: 110px;
}

.form-note {
  font-size: 13px;
  color: #4c4c4c;
}

.footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #c9c4be;
  font-size: 14px;
  color: #3f3f3f;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}

.footer-column {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #c9c4be;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 110px;
  background: #1b3c59;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  z-index: 9;
}

.sticky-cta button {
  background: #ffffff;
  color: #1b3c59;
  border: none;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.sticky-cta button:hover,
.sticky-cta button:focus {
  background: #e6dfd7;
}

.background-slice {
  background-image: url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  color: #ffffff;
  padding: 32px;
}

.background-slice p {
  max-width: 560px;
}

.divider {
  border-top: 1px solid #c9c4be;
  margin: 24px 0;
}

@media (max-width: 860px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 90px;
  }
}
