* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #121417;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: #1a4f7a;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: #ffffff;
  border-bottom: 1px solid #e2ded7;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: #5a4b3a;
  background: #f0e7da;
  padding: 6px 10px;
  border-radius: 6px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 18px;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  flex: 1 1 360px;
  min-height: 320px;
  border-radius: 16px;
  background-color: #dfe4ea;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  background: #1a4f7a;
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: #1a4f7a;
  border: 1px solid #1a4f7a;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.magazine-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e7e1d8;
}

.magazine-card .card-image {
  border-radius: 12px;
  overflow: hidden;
  background: #dfe4ea;
}

.magazine-split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.magazine-split .text-block {
  flex: 1 1 320px;
}

.magazine-split .image-block {
  flex: 1 1 280px;
  border-radius: 14px;
  overflow: hidden;
  background: #e5e8eb;
}

.quote {
  font-style: italic;
  border-left: 3px solid #1a4f7a;
  padding-left: 16px;
  color: #3f3b34;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.section-note {
  color: #5b5f63;
  margin-bottom: 10px;
}

.highlight-section {
  background: #eef1f4;
  border-radius: 18px;
  padding: 24px;
  margin: 28px 0;
}

.background-section {
  background: linear-gradient(120deg, rgba(26, 79, 122, 0.08), rgba(26, 79, 122, 0.02));
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  color: #0f1f2c;
  padding: 32px;
  margin: 32px 0;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e7e1d8;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e7e1d8;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfd5da;
  font-size: 1rem;
}

.footer {
  margin-top: 48px;
  padding: 24px;
  background: #ffffff;
  border-top: 1px solid #e2ded7;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1a4f7a;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.sticky-cta button {
  background: transparent;
  border: none;
  color: inherit;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #11181f;
  color: #ffffff;
  padding: 16px 20px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 12;
}

.cookie-banner button {
  background: #ffffff;
  color: #11181f;
  border: none;
  border-radius: 20px;
  padding: 8px 14px;
  cursor: pointer;
}

.legal-note {
  font-size: 0.9rem;
  color: #444b53;
}

@media (max-width: 860px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    text-align: center;
  }
}
