* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1a1a;
  --muted: #5b5b5b;
  --light: #f5f3ef;
  --accent: #1f4e5f;
  --accent-dark: #12323d;
  --sand: #e8e1d7;
  --card: #ffffff;
  --outline: #ded7cc;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--light);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
button:hover {
  cursor: pointer;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #141414;
  color: #f7f7f7;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sidebar nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar nav a {
  font-size: 0.98rem;
  color: #f0f0f0;
}

.sidebar .note {
  font-size: 0.9rem;
  color: #bdbdbd;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  background: #ffffff;
  border-bottom: 1px solid var(--outline);
}

.ad-disclosure {
  font-size: 0.9rem;
  color: #4a4a4a;
}

.top-links {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  padding: 90px 32px 80px;
  color: #ffffff;
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 15, 0.58);
}

.hero-content {
  position: relative;
  max-width: 640px;
}

.hero-content h1 {
  font-size: 2.7rem;
  margin: 0 0 16px;
}

.hero-content p {
  margin: 0 0 24px;
  font-size: 1.1rem;
  color: #f0f0f0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.ghost {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.section {
  padding: 56px 32px;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 320px;
}

.split .media-block {
  flex: 1 1 320px;
}

.img-frame {
  background-color: var(--sand);
  border-radius: 18px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--outline);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-media {
  height: 150px;
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.panel {
  position: relative;
  padding: 60px 32px;
  color: #ffffff;
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 18, 0.55);
}

.panel-content {
  position: relative;
  max-width: 680px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  list-style: none;
}

.timeline li {
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--outline);
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--outline);
  max-width: 640px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--outline);
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin: 0 32px 24px auto;
  align-self: flex-end;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.footer {
  padding: 32px;
  background: #111;
  color: #f1f1f1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer small {
  display: block;
  color: #cfcfcf;
  margin-top: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.muted {
  color: var(--muted);
}

.text-link {
  text-decoration: underline;
}

.simple-header {
  padding: 52px 32px 20px;
}

.simple-header h1 {
  margin: 0 0 14px;
  font-size: 2.2rem;
}

.legal-content {
  max-width: 760px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--outline);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-image {
  margin-top: 22px;
}

.hero-image .img-frame {
  height: 260px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .sidebar nav ul {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sticky-cta {
    margin: 0 18px 18px auto;
  }
}

@media (max-width: 720px) {
  .hero-content h1 {
    font-size: 2.1rem;
  }

  .section {
    padding: 44px 22px;
  }

  .topbar {
    padding: 14px 22px;
  }
}
