* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background-color: #f5f4f1;
  line-height: 1.6;
}

a {
  color: #1f2a2e;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page {
  width: 100%;
}

.topbar {
  background-color: #fdfbf7;
  border-bottom: 1px solid #e0ded9;
  padding: 16px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  background-color: #f0ede6;
  padding: 6px 10px;
  border-radius: 16px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 48px 6%;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .pane {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero {
  min-height: 520px;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  min-height: 420px;
  background-color: #cfd7da;
}

.hero-bg-about {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  min-height: 360px;
  background-color: #d7d8cf;
}

.hero-bg-services {
  background-image: url("https://images.unsplash.com/photo-1469796466635-455ede028aca?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  min-height: 360px;
  background-color: #cdd6d8;
}

.hero-bg-contact {
  background-image: url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  min-height: 320px;
  background-color: #d8d3c9;
}

.hero-bg-legal {
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  min-height: 260px;
  background-color: #cdd2d6;
}

.section-note {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #5d6a6f;
  margin-bottom: 12px;
}

.primary-title {
  font-size: 42px;
  margin: 0 0 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 28px;
  background-color: #2d4c4f;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background-color: #f0ede6;
  color: #1f2a2e;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e6e3dc;
}

.card img {
  width: 100%;
  height: 180px;
}

.media {
  background-color: #dfe5e8;
  border-radius: 16px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.muted {
  color: #58666b;
}

.pricing {
  font-size: 18px;
  font-weight: 700;
}

.section-alt {
  background-color: #ffffff;
}

.section-contrast {
  background-color: #e9ece9;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.form-wrapper {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid #e0ded9;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrapper label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd0d3;
  font-size: 15px;
}

.footer {
  padding: 32px 6% 80px;
  background-color: #1f2a2e;
  color: #f7f7f4;
}

.footer a {
  color: #f7f7f4;
  text-decoration: underline;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-column {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #2d4c4f;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.sticky-cta button {
  background-color: #ffffff;
  color: #2d4c4f;
  border-radius: 20px;
  padding: 8px 14px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border: 1px solid #d0d4d6;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  z-index: 11;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-title {
  font-size: 32px;
  margin: 0 0 12px;
}

.hero-copy {
  font-size: 18px;
}

.info-band {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background-color: #f0ede6;
  padding: 20px;
  border-radius: 16px;
}

.info-item {
  flex: 1 1 180px;
}

.section-image {
  width: 100%;
  height: 320px;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.disclaimer {
  font-size: 13px;
  color: #c9d1d4;
  margin-top: 18px;
}

.references a {
  color: #f7f7f4;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.two-column > div {
  flex: 1 1 280px;
}
