* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1f24;
  --muted: #5a6673;
  --soft: #f3f5f7;
  --accent: #2b6d8d;
  --accent-strong: #1f4f67;
  --warm: #f7efe6;
  --line: #d7dde3;
  --highlight: #eef6fb;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fbfbfc;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
  position: relative;
}

.sidebar {
  width: 280px;
  padding: 28px 22px;
  background: #ffffff;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h2 {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 8px 10px;
  background: var(--soft);
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.nav a:focus {
  background: var(--highlight);
  color: var(--accent-strong);
}

.sidebar .cta-block {
  margin-top: auto;
  background: var(--warm);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent-strong);
  border: 1px solid var(--line);
}

.content {
  flex: 1;
  padding: 40px 56px 80px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero {
  display: flex;
  gap: 30px;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.hero .hero-visual {
  flex: 1;
  min-height: 360px;
  background-image: url("https://images.unsplash.com/photo-1563770660941-20978e870e26?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-visual.about-hero {
  background-image: url("https://images.unsplash.com/photo-1762329405090-4ab27f4800cd?w=1400&q=80");
}

.hero-visual.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
}

.hero-visual.legal-hero {
  background-image: url("https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=1400&q=80");
}

.hero-visual.privacy-hero {
  background-image: url("https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=1400&q=80");
}

.hero-visual.gdpr-hero {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.hero-visual.cookies-hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.hero-visual.terms-hero {
  background-image: url("https://images.unsplash.com/photo-1517430816045-df4b7de11d1d?w=1400&q=80");
}

.hero-visual.thanks-hero {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
}

.hero .hero-content {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero .hero-content h1 {
  font-size: 2.2rem;
  line-height: 1.2;
}

.hero .hero-content p {
  color: var(--muted);
}

.split-row {
  display: flex;
  gap: 26px;
  align-items: stretch;
}

.panel {
  flex: 1;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel.image-panel {
  padding: 0;
  overflow: hidden;
}

.panel.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.panel.image-panel .img-wrap {
  background-color: #e6edf2;
  width: 100%;
  height: 100%;
}

.card-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card .img-wrap {
  background-color: #e9eef4;
}

.card .card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-strong);
}

.highlight {
  background: var(--highlight);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
}

.inline-link {
  color: var(--accent-strong);
  font-weight: 600;
  text-decoration: underline;
}

.form-section {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-section .form-text {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-family: inherit;
}

.status {
  font-size: 0.9rem;
  color: var(--muted);
}

.section-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--warm);
  border-radius: 18px;
  padding: 20px 24px;
  border: 1px solid var(--line);
}

.section-banner img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.section-banner .img-wrap {
  background-color: #efe4d8;
  border-radius: 14px;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer a {
  text-decoration: underline;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 20px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-list a {
  text-decoration: underline;
}

.page-title {
  font-size: 2rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.image-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-row .img-wrap {
  flex: 1 1 260px;
  background-color: #e3e9f0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.image-row img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .content {
    padding: 32px 24px 80px;
  }

  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
