* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1e1f23;
  background: #f6f6f4;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6%;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: #525866;
  margin-top: 6px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #1e1f23;
  font-size: 14px;
}

.nav-cta {
  padding: 10px 16px;
  background: #0d4b6a;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  padding: 48px 6% 24px;
}

.hero-text {
  flex: 1 1 360px;
  background: #ffffff;
  padding: 32px;
  border-radius: 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(16, 24, 40, 0.08);
}

.hero-image {
  flex: 1 1 360px;
  background: #dfe7ea;
  border-radius: 28px;
  overflow: hidden;
  min-height: 340px;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlap {
  margin-top: -32px;
  padding: 0 6% 24px;
}

.hero-strip {
  background: #10354a;
  color: #ffffff;
  padding: 20px 28px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-strip a {
  color: #ffffff;
  text-decoration: underline;
}

.section {
  padding: 48px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.background-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.background-media {
  position: absolute;
  inset: 0;
  background: #0f2f40;
}

.background-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
}

.background-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}

.section.asym {
  background: #ffffff;
}

.section-title {
  max-width: 640px;
  font-size: 28px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split .panel {
  flex: 1 1 320px;
}

.offset-card {
  background: #f0f4f6;
  padding: 28px;
  border-radius: 24px;
  margin-left: 6%;
}

.image-card {
  background: #e1e7ec;
  border-radius: 24px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.service-image {
  background: #d8e3e8;
  border-radius: 18px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.price {
  font-weight: 600;
  color: #0d4b6a;
}

.cta-inline {
  color: #0d4b6a;
  text-decoration: underline;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-size: 14px;
  color: #333741;
}

.form-panel select,
.form-panel input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd8dc;
  font-size: 14px;
}

.form-panel button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #0d4b6a;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

.info-panel {
  flex: 1 1 260px;
  background: #10354a;
  color: #ffffff;
  border-radius: 24px;
  padding: 28px;
}

.info-panel a {
  color: #cfe9f5;
  text-decoration: underline;
}

.testimonial {
  background: #f7f0e8;
  border-radius: 22px;
  padding: 24px;
  align-self: flex-end;
  max-width: 420px;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  background: #e9eff2;
  padding: 18px 22px;
  border-radius: 18px;
}

.cta-band a {
  padding: 10px 14px;
  background: #1e1f23;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 14px;
}

.footer {
  margin-top: auto;
  background: #111827;
  color: #e5e7eb;
  padding: 32px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #cfe9f5;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #0d4b6a;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 13px;
}

.cookie-accept {
  background: #0d4b6a;
  color: #ffffff;
}

.cookie-reject {
  background: #e5e7eb;
  color: #1f2937;
}

.page-header {
  padding: 40px 6% 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 6% 32px;
}

.page-hero .panel {
  flex: 1 1 320px;
}

.panel-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
}

.legal ul {
  margin-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sitemap {
  padding: 24px 6%;
}

@media (max-width: 860px) {
  .hero-overlap {
    margin-top: 0;
  }

  .offset-card {
    margin-left: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: unset;
  }
}
