* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f24;
  background-color: #f6f7f9;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

a {
  color: #1a4f8b;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #6b7280;
  padding: 6px 10px;
  border: 1px solid #d0d6dd;
  border-radius: 999px;
  background-color: #ffffff;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  padding: 24px 0 48px;
}

.hero-copy,
.hero-visual {
  flex: 1 1 320px;
  min-height: 360px;
}

.hero-visual {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #18212b;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(11, 20, 30, 0.55), rgba(11, 20, 30, 0.15));
}

.hero-copy h1 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.hero-copy p {
  font-size: 18px;
  margin: 0 0 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  background-color: #1a4f8b;
  color: #ffffff;
}

.btn.secondary {
  background-color: #f0f4f8;
  color: #1b1f24;
}

.section {
  padding: 32px 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 320px;
}

.panel {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(14, 20, 30, 0.08);
}

.bg-shift {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1a2430;
  border-radius: 20px;
  padding: 28px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.bg-shift::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 20, 30, 0.55);
}

.bg-shift > * {
  position: relative;
  z-index: 1;
}

.bg-contrast {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #e2e7ec;
  border-radius: 20px;
  padding: 28px;
  color: #0f172a;
  position: relative;
  overflow: hidden;
}

.bg-contrast::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
}

.bg-contrast > * {
  position: relative;
  z-index: 1;
}

.img-wrap {
  border-radius: 18px;
  overflow: hidden;
  background-color: #d9dee3;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #e7eef6;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #e5e9ee;
  padding-bottom: 12px;
}

.service-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.price {
  font-weight: 700;
  color: #1a4f8b;
}

.quote {
  font-style: italic;
  color: #374151;
}

.form-card {
  background-color: #111827;
  color: #ffffff;
}

.form-card label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.form-card input,
.form-card select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  margin-bottom: 14px;
}

.footer {
  border-top: 1px solid #e5e9ee;
  padding: 28px 0 40px;
  font-size: 14px;
  color: #4b5563;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(17, 24, 39, 0.95);
  color: #ffffff;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sticky-cta p {
  margin: 0;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 68px;
  right: 24px;
  max-width: 320px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions .btn {
  padding: 8px 14px;
  font-size: 13px;
}

.legal-page h1 {
  margin-top: 0;
}

.contact-panel {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .hero-copy h1 {
    font-size: 30px;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    right: 16px;
    left: 16px;
    max-width: none;
  }
}
