* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1f26;
  background-color: #f7f8fb;
  line-height: 1.6;
}

a {
  color: #1a4b8f;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 6vw 10px;
  background-color: #ffffff;
  border-bottom: 1px solid #e4e7ef;
}

.nav-top {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.9rem;
  color: #4a4e57;
  background-color: #f1f3f7;
  padding: 6px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

.hero {
  background-color: #dde6f2;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 90px 8vw 70px;
  background: rgba(12, 22, 38, 0.6);
}

.hero h1 {
  font-size: 2.5rem;
  margin: 0;
}

.hero p {
  max-width: 640px;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background-color: #1a4b8f;
  color: #ffffff;
  border-radius: 28px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background-color: #ffffff;
  color: #1a4b8f;
  border: 1px solid #cbd3e3;
}

.section {
  padding: 70px 8vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.split {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split .media {
  flex: 1;
  background-color: #e4e8f1;
  border-radius: 22px;
  overflow: hidden;
}

.image-frame {
  background-color: #e5ecf4;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(24, 34, 52, 0.08);
}

.card-image {
  background-color: #e5ecf4;
  border-radius: 14px;
  overflow: hidden;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: #e9effa;
  font-size: 0.8rem;
  color: #1a4b8f;
}

.highlight {
  background-color: #ffffff;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 16px 36px rgba(24, 34, 52, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-cta {
  font-weight: 600;
}

.bg-insight {
  background-color: #f0f5fb;
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-insight .section {
  background-color: rgba(247, 248, 251, 0.88);
  border-radius: 26px;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(24, 34, 52, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cbd3e3;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 40px 8vw;
  background-color: #ffffff;
  border-top: 1px solid #e4e7ef;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background-color: #1c2333;
  color: #ffffff;
  padding: 16px;
  border-radius: 14px;
  max-width: 320px;
  display: none;
  z-index: 30;
  gap: 12px;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  flex: 1;
}

.two-column {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 280px;
}

.legal {
  background-color: #f7f8fb;
  border-radius: 16px;
  padding: 20px;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 10px 8vw 30px;
  }
}
