* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d1f23;
  background: #f6f7f9;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  padding: 18px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: #0d1b2a;
  color: #fefefe;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav a:focus,
.nav a:hover {
  border-bottom-color: #f8c471;
}

.ad-label {
  font-size: 12px;
  color: #f8c471;
  border: 1px solid #f8c471;
  padding: 4px 8px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 60px 6% 50px;
  background: #fefefe;
}

.hero-text,
.hero-media {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 18px;
  color: #333a44;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #2457ff;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
}

.secondary-link {
  margin-left: 16px;
  font-weight: 600;
  color: #2457ff;
}

.hero-media {
  background: #dfe6ed;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.hero-caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(13, 27, 42, 0.8);
  color: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
}

.section {
  padding: 60px 6%;
}

.section.alt {
  background: #ffffff;
}

.image-band {
  background-color: #e9edf2;
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.image-band .split-text {
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
  border-radius: 14px;
}

.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;
}

.split-text h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.split-text p {
  margin-bottom: 16px;
}

.split-media {
  background: #e6edf4;
  border-radius: 16px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.inline-cta {
  font-weight: 600;
  color: #1c3faa;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.card {
  flex: 1 1 220px;
  background: #fefefe;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.card-image {
  background: #e2e8ee;
}

.card img {
  width: 100%;
  height: 160px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-body strong {
  font-size: 16px;
}

.card-action {
  margin-top: auto;
  font-weight: 600;
  color: #2457ff;
}

.info-band {
  padding: 40px 6%;
  background: #0d1b2a;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.info-band p {
  max-width: 520px;
}

.form-wrap {
  background: #fefefe;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cbd3dd;
  font-size: 15px;
  font-family: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: #1c3faa;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
}

button:focus,
button:hover {
  background: #16338b;
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  background: #11161d;
  color: #fefefe;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer small {
  color: #c0c6cf;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #f8c471;
  color: #1d1f23;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.cookie-actions .secondary {
  background: #9aa5b1;
}

.page-title {
  font-size: 32px;
  margin-bottom: 18px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.note {
  font-size: 13px;
  color: #4f5b66;
}

.thanks-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  max-width: 680px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-content h2 {
  font-size: 22px;
}

.legal-content p {
  color: #333a44;
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 90px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
  }
}
