* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f1ec;
  --ink: #2a241f;
  --muted: #6a5f57;
  --accent: #8a5a3b;
  --accent-soft: #e7d7c7;
  --panel: #ffffff;
  --shadow: 0 16px 40px rgba(42, 36, 31, 0.12);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  padding: 32px 24px;
  background: #f0e6db;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  background: var(--accent-soft);
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid rgba(42, 36, 31, 0.1);
}

.main {
  flex: 1;
  padding: 40px 48px 80px;
}

.hero {
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 64px 56px;
  color: #fff;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
}

.trust-home {
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1501045661006-fcebe0257c3f?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1472220625704-91e1462799b2?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.pexels.com/photos/8143719/pexels-photo-8143719.jpeg");
}

.hero-privacy {
  background-image: url("https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1400&q=80");
}

.hero-terms {
  background-image: url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?w=1400&q=80");
}

.hero-gdpr {
  background-image: url("https://images.unsplash.com/photo-1505843513577-22bb7d21e455?w=1400&q=80");
}

.hero-cookies {
  background-image: url("https://images.pexels.com/photos/38093701/pexels-photo-38093701.jpeg");
}

.hero-thanks {
  background-image: url("https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?w=1400&q=80");
}

.hero h1 {
  font-size: 38px;
  margin-bottom: 12px;
}

.hero p {
  max-width: 540px;
  font-size: 18px;
}

.section {
  margin: 48px 0;
  display: flex;
  gap: 32px;
}

.section.column {
  flex-direction: column;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section .text-block {
  flex: 1;
}

.section .media-block {
  flex: 1;
  background: #efe3d6;
  border-radius: 18px;
  overflow: hidden;
}

.tagline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 8px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--accent);
  font-weight: 600;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--panel);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card .media-block {
  border-radius: 12px;
  overflow: hidden;
  background: #f0e6db;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.trust-band {
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 32px;
  color: #fff;
  box-shadow: var(--shadow);
}

.split-panel {
  display: flex;
  gap: 24px;
}

.split-panel .panel {
  flex: 1;
  background: var(--panel);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.form-wrap {
  background: var(--panel);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  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 rgba(42, 36, 31, 0.2);
  font-size: 15px;
}

.form-wrap textarea {
  min-height: 110px;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.sticky-cta span {
  font-size: 14px;
}

.footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(42, 36, 31, 0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  box-shadow: var(--shadow);
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.legal-block {
  background: #fdfbf9;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(42, 36, 31, 0.08);
}

.simple-hero {
  display: flex;
  gap: 24px;
  align-items: center;
}

.simple-hero .media-block {
  flex: 0.9;
}

.simple-hero .text-block {
  flex: 1.1;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  margin-left: 18px;
}

.wide-banner {
  background: var(--accent-soft);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.info-grid .panel {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.page-title {
  font-size: 30px;
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
}

.image-frame {
  background: #efe3d6;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  height: 240px;
}

@media (max-width: 1000px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .main {
    padding: 32px 24px 80px;
  }

  .section,
  .section.reverse,
  .split-panel,
  .simple-hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 96px;
  }
}
