* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1f2a2e;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: #0f5b66;
  text-decoration: none;
}

img.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  background: #f0e9df;
  border-bottom: 1px solid #e0d6c9;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
}

.ad-label {
  background: #1f2a2e;
  color: #f7f4ef;
  padding: 6px 10px;
  border-radius: 16px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 22px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 15px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #273237;
  color: #f7f4ef;
  padding: 120px 0 150px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 28, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.hero h1 {
  font-size: clamp(34px, 4vw, 54px);
  margin: 0 0 16px;
}

.hero p {
  max-width: 560px;
  font-size: 18px;
  margin: 0 0 24px;
}

.button {
  background: #f2c879;
  color: #1f2a2e;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.ghost-button {
  background: transparent;
  border: 1px solid #f2c879;
  color: #f2c879;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}

.section {
  padding: 70px 0;
  position: relative;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(27, 43, 47, 0.12);
  margin-left: -60px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.service-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #0f5b66;
}

.accent-section {
  background: #e9f0ef;
}

.trust-band {
  background-image: url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2a3b40;
  color: #f7f4ef;
}

.trust-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 32, 37, 0.58);
}

.trust-band .container {
  position: relative;
  z-index: 1;
}

.inline-image {
  width: 100%;
  border-radius: 12px;
  background-color: #d7d7d7;
  overflow: hidden;
  height: 360px;
}

.info-columns {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.info-panel {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 24px;
  border-radius: 14px;
}

.form-wrapper {
  background: #ffffff;
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(27, 43, 47, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border: 1px solid #d1d5d8;
  border-radius: 6px;
  font-size: 15px;
}

.footer {
  background: #1f2a2e;
  color: #f7f4ef;
  padding: 40px 0;
  margin-top: 60px;
}

.footer a {
  color: #f2c879;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.disclaimer {
  font-size: 14px;
  color: #dde7e6;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta button {
  background: #0f5b66;
  color: #f7f4ef;
  border: none;
  padding: 12px 18px;
  border-radius: 28px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #d1d5d8;
  padding: 16px;
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.muted {
  color: #516166;
  font-size: 15px;
}

.page-hero {
  background: #f0e9df;
  padding: 60px 0 40px;
}

.callout {
  background: #ffffff;
  padding: 22px;
  border-left: 4px solid #f2c879;
  border-radius: 10px;
}

.image-frame {
  background-color: #c9d1cf;
  border-radius: 14px;
  overflow: hidden;
  height: 320px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.references a {
  color: #f2c879;
}

.no-link {
  color: #f7f4ef;
  text-decoration: none;
}

@media (max-width: 860px) {
  .hero-content,
  .split {
    flex-direction: column;
    align-items: flex-start;
  }

  .offset-card {
    margin-left: 0;
  }
}
