* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4f1;
  --ink: #1f2a2a;
  --muted: #5b6767;
  --accent: #2b6f6a;
  --accent-soft: #cde5e2;
  --sand: #ebe6df;
  --pebble: #d7d2cc;
  --warm: #f0e6da;
  --shadow: rgba(31, 42, 42, 0.1);
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #ffffff;
  border-right: 1px solid var(--pebble);
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  background: var(--warm);
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  color: var(--ink);
}

.nav a:hover,
.nav a:focus {
  color: var(--accent);
}

.cta-primary {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.cta-secondary {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 14px;
  border-radius: 12px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.content {
  flex: 1;
  padding: 38px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-media {
  flex: 0.9;
  border-radius: 24px;
  overflow: hidden;
  background: var(--pebble);
  min-height: 340px;
}

.section {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.tight {
  gap: 18px;
}

.panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 40px var(--shadow);
  flex: 1;
}

.panel.soft {
  background: var(--sand);
  box-shadow: none;
}

.media-box {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background: var(--pebble);
  min-height: 220px;
}

.bg-context {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-context .muted {
  color: rgba(255, 255, 255, 0.8);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 230px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 30px var(--shadow);
}

.card .image {
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--pebble);
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.form-wrap {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.form-panel {
  flex: 1.3;
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 18px 40px var(--shadow);
}

.form-visual {
  flex: 0.7;
  border-radius: 20px;
  overflow: hidden;
  background: var(--pebble);
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.service-option {
  border: 1px solid var(--pebble);
  padding: 12px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-option input {
  accent-color: var(--accent);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.field input,
.field select,
.field textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--pebble);
  font-size: 15px;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
}

.footer {
  padding: 28px;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 28px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--pebble);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 12px 26px var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--pebble);
  box-shadow: 0 12px 30px var(--shadow);
  padding: 16px 18px;
  border-radius: 16px;
  max-width: 360px;
  z-index: 12;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
}

.split-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.split-list ul {
  flex: 1 1 220px;
  margin: 0;
  padding-left: 18px;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  gap: 16px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 26px var(--shadow);
}

.service-row .service-info {
  flex: 1.3;
}

.service-row .service-price {
  flex: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  font-size: 18px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight {
  background: var(--accent);
  color: #ffffff;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600;
}

.page-title {
  font-size: 32px;
  margin: 0 0 12px;
}

.muted {
  color: var(--muted);
}

.inline-image {
  display: flex;
  gap: 14px;
  align-items: center;
}

.inline-image .image {
  width: 120px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--pebble);
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .content {
    padding: 28px 20px 90px;
  }

  .hero,
  .section,
  .form-wrap {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
