* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f7f9;
  --ink: #1c2430;
  --muted: #5a6676;
  --accent: #2f5bea;
  --accent-dark: #2447b5;
  --soft: #eef1f6;
  --sand: #f3efe9;
  --forest: #0f2c2f;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 6%;
  gap: 20px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 220px;
}

.split-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 70px 6%;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-media {
  flex: 1;
}

.split-media .img-frame {
  background-color: #d6dde8;
  border-radius: 18px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 420px;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-weight: 700;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
}

.lead {
  font-size: 17px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: var(--accent);
  color: white;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.soft-bg {
  background: var(--soft);
}

.sand-bg {
  background: var(--sand);
}

.dark-bg {
  background: var(--forest);
  color: #f5f7fa;
}

.dark-bg .lead,
.dark-bg .section-label {
  color: #cbd3dd;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 40px rgba(25, 34, 52, 0.08);
}

.service-card .img-frame {
  width: 140px;
  height: 110px;
  background-color: #c7d2df;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card img {
  width: 140px;
  height: 110px;
}

.service-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-card {
  background: white;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 16px 44px rgba(25, 34, 52, 0.08);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

fieldset {
  border: 1px solid #d6dde8;
  padding: 14px;
  border-radius: 12px;
}

fieldset legend {
  padding: 0 8px;
  font-weight: 600;
}

.radio-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 14px;
}

input,
select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd4e0;
  font-size: 14px;
}

.two-col {
  display: flex;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(25, 34, 52, 0.2);
  z-index: 20;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: var(--accent-dark);
}

footer {
  padding: 50px 6%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #10151e;
  color: #e1e6ef;
}

footer a {
  color: #e1e6ef;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.disclaimer {
  font-size: 13px;
  color: #c6ceda;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: white;
  border-radius: 16px;
  padding: 16px 18px;
  max-width: 320px;
  box-shadow: 0 16px 40px rgba(25, 34, 52, 0.18);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  padding: 8px 14px;
  font-size: 13px;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.accent-bg {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: white;
}

.accent-bg .lead {
  color: #e6ecf6;
}

@media (max-width: 960px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .split-media img {
    height: 320px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .two-col {
    flex-direction: column;
  }
}
