* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1f20;
  --muted: #5b5f62;
  --accent: #2f5b4d;
  --accent-soft: #e8f1ee;
  --sand: #f3efe7;
  --stone: #e2e4df;
  --shadow: rgba(0, 0, 0, 0.08);
  --sidebar: #f7f4ee;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 270px;
  background: var(--sidebar);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.4px;
  font-weight: 600;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-list a {
  font-size: 15px;
}

.nav-cta {
  margin-top: auto;
  padding: 14px 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 0 48px;
}

.section {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero {
  background: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80") center / cover no-repeat;
  color: #ffffff;
  min-height: 420px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 31, 32, 0.55);
}

.hero-content {
  position: relative;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary {
  background: #ffffff;
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-media {
  flex: 1 1 280px;
  background: var(--stone);
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 16px 30px var(--shadow);
}

.highlight {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
}

.visual-band {
  background: url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?w=1400&q=80") center / cover no-repeat;
  color: #fff;
  position: relative;
}

.visual-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 40, 35, 0.55);
}

.visual-band .band-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 28px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-media {
  background: var(--sand);
  padding: 8px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.form-section {
  background: var(--sand);
}

.form-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd2ce;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 18px 28px var(--shadow);
  z-index: 4;
}

.footer {
  background: #1f2a26;
  color: #e7ecea;
  padding: 40px 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 13px;
  color: #cfd7d3;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  box-shadow: 0 14px 24px var(--shadow);
  border-radius: 14px;
  padding: 16px;
  width: min(320px, 90vw);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
}

.cookie-btn.primary {
  background: var(--accent);
  color: #ffffff;
}

.page-title {
  font-size: 34px;
}

.page-intro {
  font-size: 16px;
  color: var(--muted);
}

.list-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.list-item {
  flex: 1 1 220px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 14px 22px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-minor {
  background: var(--stone);
}

.hero-minor .split-media {
  box-shadow: none;
}

.contact-details {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.detail-card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 12px 20px var(--shadow);
}

.thanks-card {
  background: var(--accent-soft);
  padding: 28px;
  border-radius: 16px;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 0;
  }

  .section {
    padding: 36px 24px;
  }
}
