:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --ink: #1c1c1c;
  --muted: #5e5e5e;
  --accent: #1f6f5b;
  --accent-soft: #e2f1ec;
  --warm: #f2e9dc;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  background: var(--surface);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:focus,
.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  display: flex;
  gap: 40px;
  padding: 40px 6% 20px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-text h1 {
  font-size: 42px;
  margin: 0;
}

.hero-text p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-media {
  flex: 0.9;
  position: relative;
  background: var(--warm);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 60%;
  height: 40%;
  background: var(--accent-soft);
  z-index: 0;
}

.image-frame {
  position: relative;
  z-index: 1;
  background: #d7e2dd;
}

.media-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: var(--ink);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: 50px 6%;
}

.section-contrast {
  background: var(--surface);
}

.offset-layout {
  display: flex;
  gap: 30px;
  align-items: center;
}

.offset-layout.reverse {
  flex-direction: row-reverse;
}

.offset-box {
  flex: 1;
  background: var(--accent-soft);
  padding: 26px;
  border-radius: 18px;
}

.offset-note {
  flex: 0.9;
  background: var(--warm);
  padding: 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-media {
  background: #e4ebe6;
  height: 160px;
}

.card-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: var(--surface);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d1d1d1;
  font-size: 14px;
  font-family: inherit;
}

.footer {
  background: #121212;
  color: #f1f1f1;
  padding: 28px 6%;
  margin-top: auto;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer small {
  color: #c7c7c7;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid #b8b8b8;
}

.hidden {
  display: none;
}

.legal-title {
  font-size: 30px;
  margin: 0 0 12px;
}

.legal-body {
  max-width: 760px;
  line-height: 1.7;
  color: var(--muted);
}

.simple-image {
  max-width: 520px;
  margin: 0;
}

.simple-image .media-img {
  height: 320px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .offset-layout {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
