* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2933;
  --muted: #5f6c7b;
  --accent: #2f6da1;
  --accent-strong: #1e4f75;
  --sand: #f5f0ea;
  --paper: #ffffff;
  --night: #0f1b2b;
  --sage: #e3eadf;
  --clay: #e8d6c6;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 270px;
  background: var(--sand);
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
}

.brand-tag {
  font-size: 13px;
  color: var(--muted);
}

.ad-disclosure {
  font-size: 12px;
  background: var(--clay);
  padding: 10px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  font-size: 14px;
  color: var(--ink);
}

.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn,
.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
}

.btn-secondary {
  background: var(--night);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 70px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.tight {
  padding-top: 32px;
  padding-bottom: 32px;
}

.section.alt {
  background: var(--sage);
}

.section.dark {
  background: var(--night);
  color: #fff;
}

.section.hero {
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-index {
  background-image: url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?w=1400&q=80");
  background-color: #243447;
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-color: #1b2d3d;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-color: #223040;
}

.bg-guidance {
  background-image: url("https://images.unsplash.com/photo-1508780709619-79562169bc64?w=1400&q=80");
  background-color: #243447;
}

.section.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 26, 0.55);
}

.section.hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 36px;
  line-height: 1.2;
}

.hero-sub {
  font-size: 17px;
  color: #e2ecf5;
}

.split {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split .panel {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.media-box {
  background: var(--clay);
  border-radius: 18px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  background: var(--paper);
  border-radius: 18px;
  padding: 18px;
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(15, 27, 43, 0.08);
}

.card-title {
  font-size: 16px;
  font-weight: 700;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-strong);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  border: 1px solid #d6dfe8;
}

.form-box {
  background: var(--paper);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 24px rgba(15, 27, 43, 0.1);
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d0d7de;
  font-size: 14px;
  width: 100%;
}

.footer {
  padding: 36px 70px 50px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}

.disclaimer {
  font-size: 12px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(15, 27, 43, 0.18);
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.small-text {
  font-size: 13px;
  color: var(--muted);
}

.background-panel {
  background-color: #223040;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  padding: 26px;
  color: #fff;
}

.notice {
  background: #fff7e6;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #f0d9b5;
  color: #5b4432;
  font-size: 13px;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .content {
    width: 100%;
  }

  .section,
  .footer {
    padding: 40px 22px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 90px;
  }
}
