:root {
  --bg: #f7f4f1;
  --ink: #1f2328;
  --muted: #5a6169;
  --accent: #2b6d5a;
  --accent-soft: #e2efe9;
  --card: #ffffff;
  --line: #d9d2cb;
  --shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 28px 22px;
  background: #fff;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.8px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 12px;
  background: var(--accent-soft);
}

.content {
  flex: 1;
  padding: 32px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border-radius: 28px;
  background-color: #3e4a45;
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 320px;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: relative;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: 36px;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

.section {
  background: var(--card);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.section-row.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-block {
  flex: 1 1 260px;
  display: flex;
  justify-content: center;
}

.image-frame {
  background: #d8e2dc;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
}

.image-frame img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .image-frame img {
  height: 160px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.highlight {
  background: #f1ebe6;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap label {
  font-size: 14px;
  color: var(--muted);
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.footer {
  padding: 28px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1f2328;
  color: #fff;
  font-size: 14px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1;
}

.split-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 20px;
  background: #fff7f2;
  border: 1px solid var(--line);
}

.notice {
  font-size: 13px;
  color: var(--muted);
}

.notice strong {
  color: var(--ink);
}

.list-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.list-columns ul {
  margin: 0;
  padding-left: 18px;
}

.background-panel {
  background-color: #2f4b43;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.background-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.background-panel .panel-content {
  position: relative;
  color: #fff;
  padding: 24px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 13px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 24px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}

.hero-bg-index {
  background-image: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1400&q=80");
}

.panel-bg-index {
  background-image: url("https://images.unsplash.com/photo-1517849845537-4d257902454a?w=1400&q=80");
}

.hero-bg-about {
  background-image: url("https://images.unsplash.com/photo-1450778869180-41d0601e046e?w=1400&q=80");
}

.hero-bg-services {
  background-image: url("https://images.unsplash.com/photo-1504203700686-0be1b1c9bdc1?w=1400&q=80");
}

.hero-bg-contact {
  background-image: url("https://images.unsplash.com/photo-1508672019048-805c876b67e2?w=1400&q=80");
}

.hero-bg-thanks {
  background-image: url("https://images.unsplash.com/photo-1467417088724-12c3f1d76b2d?w=1400&q=80");
}

.hero-bg-privacy {
  background-image: url("https://images.unsplash.com/photo-1517423440428-a5a00ad493e8?w=1400&q=80");
}

.hero-bg-gdpr {
  background-image: url("https://images.unsplash.com/photo-1444212477490-ca407925329e?w=1400&q=80");
}

.hero-bg-cookies {
  background-image: url("https://images.unsplash.com/photo-1472491235688-bdc81a63246e?w=1400&q=80");
}

.hero-bg-terms {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}
