.page {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f4f1;
  margin: 0;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

a {
  color: #1b3c59;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-header {
  border-bottom: 1px solid #d7d1c9;
  background: #fffaf4;
  padding: 18px 6vw;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.6px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-disclosure {
  font-size: 12px;
  color: #5b4a3d;
  background: #f0e6da;
  padding: 4px 10px;
  border-radius: 20px;
}

.page-main {
  padding: 28px 6vw 80px;
}

.magazine-grid {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.magazine-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.section-banner {
  background: #1b3c59;
  color: #ffffff;
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-size: cover;
  background-position: center;
}

.hero-banner {
  background-image: url("https://images.unsplash.com/photo-m3hn2Kn5Bns?w=1400&q=80");
}

.context-banner {
  background-image: url("https://images.unsplash.com/photo-GJao3ZTX9gU?w=1400&q=80");
}

.insight-banner {
  background-image: url("https://images.unsplash.com/photo-LNRyGwIJr5c?w=1400&q=80");
}

.legal-banner {
  background-image: url("https://images.unsplash.com/photo-o0Qqw21-0NI?w=1400&q=80");
}

.hero-title {
  font-size: 36px;
  margin: 0;
}

.hero-subtitle {
  font-size: 18px;
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #f6b85b;
  color: #1b1b1b;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
}

.button.secondary {
  background: #f0e6da;
}

.inline-cta {
  font-weight: 600;
}

.image-card {
  background: #e6ded4;
  border-radius: 16px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 260px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  padding: 16px;
  border-radius: 14px;
  background: #f9f4ee;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.feature-tag {
  background: #f0e6da;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
}

.form-wrapper {
  background: #ffffff;
  padding: 24px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid #d9d1c7;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-footer {
  background: #1b1b1b;
  color: #f3efe9;
  padding: 28px 6vw 60px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #f3efe9;
  font-size: 13px;
}

.disclaimer {
  font-size: 12px;
  color: #d8d1c8;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 5;
}

.sticky-cta button {
  border-radius: 999px;
  padding: 12px 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-banner p {
  margin: 0;
  font-size: 13px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-title {
  font-size: 30px;
  margin: 0 0 8px;
}

.narrow {
  max-width: 820px;
}

.split-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.split-col {
  flex: 1;
  min-width: 220px;
}

@media (max-width: 900px) {
  .magazine-grid {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
  }
}
