* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d232a;
  background: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: #ffffff;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #5a5f66;
  border: 1px solid #c9ccd1;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2f3f5;
}

.hero {
  min-height: 70vh;
  background: linear-gradient(rgba(12, 16, 20, 0.55), rgba(12, 16, 20, 0.2)),
    url("https://images.unsplash.com/photo-1509395176047-4a66953fd231?w=1400&q=80")
      center/cover no-repeat;
  color: #fefefe;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 650px;
  padding: 60px 24px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 6px;
  background: #f4c554;
  color: #1b1b1b;
  font-weight: 600;
  margin-top: 16px;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #f4c554;
  color: #fefefe;
  margin-left: 12px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.media {
  background: #e2e6e9;
  border-radius: 12px;
  overflow: hidden;
}

.panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 14px 40px rgba(20, 28, 38, 0.1);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(20, 28, 38, 0.08);
}

.card-content {
  padding: 18px;
}

.section-muted {
  background: #eef1f2;
}

.section-dark {
  background: #11161d;
  color: #f0f4f7;
  background-image: linear-gradient(
      rgba(10, 12, 14, 0.8),
      rgba(10, 12, 14, 0.6)
    ),
    url("https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-dark .btn {
  background: #f2b447;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(20, 28, 38, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 1px solid #c9ccd1;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
}

.inline-cta {
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1d232a;
  color: #fdfdfd;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.sticky-cta a {
  color: #fdfdfd;
  font-weight: 600;
}

.footer {
  background: #0f141a;
  color: #d7dde3;
  padding: 36px 24px 80px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.footer a {
  color: #d7dde3;
}

.legal {
  font-size: 13px;
  color: #b8bfc7;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 340px;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(15, 20, 25, 0.2);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #c9ccd1;
  background: #f4f6f8;
  font-weight: 600;
}

.cookie-actions button.accept {
  background: #1d232a;
  color: #ffffff;
  border-color: #1d232a;
}

.page-title {
  font-size: 36px;
  margin-bottom: 12px;
}

.simple-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(20, 28, 38, 0.08);
}

.simple-hero img {
  border-radius: 12px;
}

.note {
  font-size: 14px;
  color: #4a4f55;
}

.mt-lg {
  margin-top: 36px;
}
