* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f2a;
  background-color: #f5f6f8;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  width: 100%;
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  background: #ffffff;
  border-bottom: 1px solid #e5e8ee;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background: #f0f4ff;
  border-radius: 16px;
  color: #2b3a67;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 30px;
  padding: 60px 6%;
  background: #eff1f6;
}

.hero-content {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-media {
  flex: 1 1 360px;
  background-color: #c7ced8;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  background: #1b3f8b;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: #ffffff;
  color: #1b3f8b;
  border: 1px solid #cdd6e4;
}

.button:hover {
  transform: translateY(-1px);
  background: #163474;
}

.button.secondary:hover {
  background: #f3f6fb;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 50px 6%;
  background: #ffffff;
}

.split.reverse {
  flex-direction: row-reverse;
  background: #f7f8fb;
}

.split-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media {
  flex: 1 1 320px;
  background-color: #d7dbe0;
  border-radius: 14px;
  overflow: hidden;
  min-height: 260px;
}

.media img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 40px 6% 70px;
  background: #f3f4f8;
}

.card {
  flex: 1 1 250px;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}

.card-media {
  background-color: #d9dde3;
  border-radius: 10px;
  overflow: hidden;
  height: 160px;
}

.card-media img {
  width: 100%;
  height: 100%;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.step {
  flex: 1 1 200px;
  padding: 16px;
  background: #eef2f7;
  border-radius: 12px;
}

.form-section {
  padding: 60px 6%;
  background: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 360px;
  background: #f6f7fb;
  padding: 24px;
  border-radius: 14px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
  font-size: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #c9d1dc;
  font-size: 14px;
  font-family: inherit;
}

.inline-cta {
  color: #1b3f8b;
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin: 0 6% 40px;
  background: #1b3f8b;
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer {
  background: #121826;
  color: #e6e9ef;
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.legal {
  font-size: 12px;
  color: #c7ccd6;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid #d6dbe3;
  border-radius: 12px;
  padding: 16px;
  max-width: 360px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
  z-index: 200;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-title {
  padding: 50px 6% 30px;
  background: #eff1f6;
}

.page-title h1 {
  margin: 0 0 10px;
}

.simple-section {
  padding: 30px 6% 50px;
  background: #ffffff;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.contact-card {
  flex: 1 1 240px;
  padding: 20px;
  background: #f2f4f8;
  border-radius: 12px;
}

.note {
  font-size: 14px;
  color: #5f6673;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
