* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d2230;
  background: #f7f8fb;
  line-height: 1.6;
}

a {
  color: #1b4dff;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar {
  padding: 18px 0;
  background: #0f1521;
  color: #eef2ff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #eef2ff;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  opacity: 0.85;
  max-width: 320px;
}

.hero {
  padding: 64px 0 40px;
}

.hero-wrap {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 12px 0;
}

.hero-card {
  flex: 1 1 360px;
  background: #0f1729;
  color: #f8fafc;
  border-radius: 28px;
  padding: 16px;
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  pointer-events: none;
}

.hero-card img {
  width: 100%;
  height: 320px;
  border-radius: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1b4dff;
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #e0e6ff;
  color: #1b2a5a;
}

.section {
  padding: 48px 0;
}

.section.accent {
  background: #ffffff;
}

.offset-block {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.offset-block.reverse {
  flex-direction: row-reverse;
}

.offset-content {
  flex: 1 1 340px;
}

.offset-image {
  flex: 1 1 320px;
  background: #dfe6f7;
  padding: 12px;
  border-radius: 22px;
  position: relative;
  top: -14px;
}

.offset-image img {
  border-radius: 16px;
  height: 280px;
}

.floating-panel {
  background: #f1f4ff;
  border-radius: 18px;
  padding: 24px;
  margin-top: 18px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.pill {
  background: #0f1729;
  color: #f8fafc;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(15, 23, 41, 0.08);
}

.service-image {
  background: #e3e9f8;
  border-radius: 14px;
  overflow: hidden;
}

.service-image img {
  height: 160px;
}

.price {
  font-weight: 700;
  color: #1b2a5a;
}

.split-note {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.note {
  flex: 1 1 220px;
  background: #0f1729;
  color: #f8fafc;
  border-radius: 16px;
  padding: 18px;
}

.form-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 360px;
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 16px 28px rgba(15, 23, 41, 0.1);
}

.form-panel label {
  display: block;
  font-weight: 600;
  margin-top: 12px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid #cdd5ea;
  font-family: inherit;
}

.form-status {
  margin-top: 12px;
  font-size: 14px;
  color: #1b2a5a;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
}

.legal {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
}

.footer {
  background: #0f1521;
  color: #d8dff5;
  padding: 30px 0;
  margin-top: 40px;
}

.footer a {
  color: #d8dff5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1b4dff;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 22px rgba(27, 77, 255, 0.3);
  z-index: 20;
}

.sticky-cta a {
  color: #ffffff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 20px rgba(15, 23, 41, 0.2);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.bg-overlay {
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8fafc;
}

.bg-overlay .floating-panel {
  background: rgba(15, 23, 41, 0.75);
  color: #f8fafc;
}

@media (max-width: 860px) {
  .sticky-cta {
    position: static;
    margin: 16px auto 0;
    justify-content: center;
  }

  .cookie-banner {
    position: static;
    margin: 16px;
  }
}
