* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1a1a;
  --muted: #5b5b5b;
  --soft: #f4f2ee;
  --sand: #e8e3da;
  --accent: #2255ff;
  --accent-dark: #1332a8;
  --leaf: #2f6b4f;
  --sky: #e6eef7;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

header {
  padding: 20px 32px;
  border-bottom: 1px solid #e5e5e5;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-disclosure {
  font-size: 12px;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid #d7d7d7;
  border-radius: 999px;
  background: #fafafa;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.split-section {
  display: flex;
  gap: 36px;
  align-items: stretch;
  padding: 40px 32px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section.tight {
  padding: 28px 32px;
}

.split-section.full {
  background: var(--soft);
}

.split-section.alt {
  background: var(--sky);
}

.split-text,
.split-media {
  flex: 1;
  min-width: 280px;
}

.split-text h1,
.split-text h2 {
  margin-bottom: 12px;
  font-size: 32px;
  line-height: 1.2;
}

.split-text h2 {
  font-size: 26px;
}

.split-text p {
  margin-bottom: 14px;
  color: var(--muted);
}

.tagline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--leaf);
  margin-bottom: 10px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  border: none;
}

.button.secondary {
  background: var(--leaf);
}

.button.light {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid #cbd4ff;
}

.image-frame {
  background: #ded9d0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
  display: flex;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 16px;
  align-items: center;
}

.service-card .image-frame {
  width: 120px;
  height: 90px;
  flex-shrink: 0;
}

.service-card .card-text {
  flex: 1;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-dark);
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 20px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d6d6d6;
  font-size: 14px;
}

.notice {
  background: var(--sand);
  padding: 14px 18px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  background: #111111;
  color: #f1f1f1;
  padding: 36px 32px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer a {
  color: #f1f1f1;
}

.footer-column {
  min-width: 220px;
}

.footer small {
  color: #cfcfcf;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid #dfe3ff;
  border-radius: 999px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.sticky-cta span {
  font-size: 14px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  background: #ffffff;
  border: 1px solid #d7d7d7;
  border-radius: 12px;
  padding: 14px 16px;
  max-width: 320px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 12;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-button {
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
}

.cookie-button.accept {
  background: var(--leaf);
  color: #ffffff;
}

.cookie-button.reject {
  background: #ececec;
  color: var(--ink);
}

.legal-block {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  color: var(--muted);
  margin: 12px 0;
}

.list-inline {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.reference-list a {
  color: #ffffff;
}

.hero-background {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  padding: 40px;
  border-radius: 16px;
}

.section-bg-one {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section-bg-two {
  background-image: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section-bg-overlay {
  background: rgba(17, 17, 17, 0.55);
  padding: 32px;
  border-radius: 16px;
}

@media (max-width: 920px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
