* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4f1;
  --ink: #1f2528;
  --muted: #5e676c;
  --accent: #1b6f6f;
  --accent-2: #d7a85b;
  --surface: #ffffff;
  --surface-dark: #203339;
  --line: #d9d3cb;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 6vw 10px;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  gap: 40px;
  padding: 40px 6vw 20px;
  align-items: center;
}

.hero-content {
  flex: 1;
  max-width: 520px;
}

.hero-media {
  flex: 1.2;
  min-height: 360px;
  background-color: #b7c7c6;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  transform: translateX(18px);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  pointer-events: none;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
  min-width: 260px;
}

.offset-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(31, 37, 40, 0.08);
  transform: translateY(-18px);
}

.highlight {
  background: var(--surface-dark);
  color: #f1f4f4;
  border-radius: 28px;
  padding: 32px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1;
  min-width: 240px;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 30px rgba(31, 37, 40, 0.08);
}

.card-body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 16px rgba(27, 111, 111, 0.2);
}

.image-frame {
  background-color: #c9d3cf;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1;
  min-width: 200px;
  background: #f0ece6;
  border-radius: 16px;
  padding: 18px;
}

.form-wrap {
  background: var(--surface);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 38px rgba(31, 37, 40, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 50px;
  background: #1b2224;
  color: #f5f6f7;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #f5f6f7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #c7d0d4;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-2);
  color: #1f2528;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: var(--ink);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 26px rgba(31, 37, 40, 0.18);
  display: none;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 8px 16px;
}

.page-title {
  font-size: 2.2rem;
  margin: 0;
}

.subtle {
  color: var(--muted);
}

.hero-alt {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1497493292307-31c376b6e479?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.legal-hero {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-bg {
  background: #ebe7e1;
  border-radius: 30px;
}

.inline-image {
  width: 100%;
  height: 260px;
}

.small-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero {
    flex-direction: column;
  }

  .hero-media {
    width: 100%;
    transform: none;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
