* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1d242d;
  background: #f6f7f9;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 260px;
  background: #10161d;
  color: #f0f4f8;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  padding: 10px 12px;
  background: #1c2530;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.sidebar-cta {
  margin-top: auto;
  padding: 16px;
  border-radius: 16px;
  background: #243142;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main {
  flex: 1;
  background: #f6f7f9;
  padding: 40px 56px 80px;
}

.section {
  margin-bottom: 56px;
  padding: 32px;
  border-radius: 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  color: #ffffff;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  justify-content: flex-end;
}

.hero-main {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 18, 28, 0.85), rgba(10, 18, 28, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1.1;
}

.hero p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1a7af7;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: #1a7af7;
  border: 1px solid #1a7af7;
}

.btn:hover {
  filter: brightness(0.95);
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.split-row {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 280px;
}

.split-media {
  flex: 1 1 280px;
}

.image-frame {
  background: #dfe7ef;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #f2f5f8;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card h3 {
  margin: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 10px;
  background: #e4edf7;
  border-radius: 999px;
  font-size: 13px;
}

.cta-sticky {
  position: sticky;
  top: 24px;
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(15, 23, 32, 0.08);
}

.form-layout {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9d4e0;
  font-family: inherit;
}

.form-panel button {
  align-self: flex-start;
}

.footer {
  margin-top: 40px;
  padding: 24px 0 0;
  border-top: 1px solid #d5dbe3;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer a {
  border-bottom: 1px solid currentColor;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #10161d;
  color: #f0f4f8;
  padding: 18px 20px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  background: #f0b429;
  color: #10161d;
}

.cookie-actions .btn.secondary {
  background: transparent;
  color: #f0f4f8;
  border: 1px solid #f0f4f8;
}

.banner-visible {
  display: flex;
}

.legal-note {
  font-size: 13px;
  color: #4b5563;
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight {
  background: #e9f4ff;
}

.background-trust {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.background-trust::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 28, 0.72);
}

.background-trust > * {
  position: relative;
  z-index: 1;
}

.muted {
  color: #657081;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    flex: none;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .main {
    padding: 28px 24px 64px;
  }
}
