* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b2330;
  background: #f6f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  object-fit: cover;
  display: block;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 24px 12px;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.disclosure {
  font-size: 12px;
  color: #4b5566;
  max-width: 300px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: flex-end;
}

.nav-links a,
.nav-links button {
  background: #ffffff;
  border: 1px solid #d3d7df;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 40px 24px 24px;
  position: relative;
}

.hero-text {
  flex: 1 1 380px;
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
}

.hero-visual {
  flex: 1 1 380px;
  min-height: 320px;
  background-color: #d9e6f2;
  border-radius: 18px;
  overflow: hidden;
  transform: translateY(-12px);
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.badge {
  display: inline-block;
  background: #111827;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  border: none;
  background: #1f6feb;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: #ffffff;
  color: #1f6feb;
  border: 1px solid #1f6feb;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 36px 24px;
  align-items: stretch;
}

.split-section.bg-story {
  background-color: #e7ecf4;
  background-image: url("https://images.unsplash.com/photo-1473181488821-2d23949a045a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.split-card {
  flex: 1 1 320px;
  padding: 24px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
  position: relative;
}

.offset-card {
  transform: translateY(18px);
}

.image-card {
  flex: 1 1 320px;
  background: #dfe7e0;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.image-card.spaced {
  margin-top: 20px;
}

.image-card img {
  width: 100%;
  height: 100%;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px;
}

.service-card {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(30, 41, 59, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card button.is-selected,
.service-card button.is-selected:hover {
  background: #0f172a;
  color: #ffffff;
}

.service-card .service-media {
  background-color: #f0efe9;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #f1f5f9;
  border-radius: 999px;
  font-size: 13px;
}

.section-title {
  font-size: 26px;
  margin-bottom: 14px;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 36px 24px;
  background: #101828;
  color: #ffffff;
}

.form-panel {
  flex: 1 1 320px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  color: #101828;
  padding: 20px;
  border-radius: 16px;
}

.form-panel label {
  font-weight: 600;
  font-size: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
}

.form-panel button {
  border: none;
  background: #1f6feb;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #111827;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.4);
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quote-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 28px 24px 10px;
}

.quote {
  flex: 1 1 240px;
  background: #ffffff;
  border-left: 4px solid #1f6feb;
  padding: 16px;
  border-radius: 8px;
}

.dual-block {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 24px;
}

.dual-block .panel {
  flex: 1 1 280px;
  padding: 20px;
  border-radius: 16px;
  background: #edf2ff;
}

.cta-inline {
  color: #1f6feb;
  font-weight: 600;
}

.footer {
  padding: 36px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #0f172a;
  color: #f8fafc;
}

.footer a {
  color: #f8fafc;
  text-decoration: underline;
}

.footer-col {
  flex: 1 1 220px;
}

.legal {
  font-size: 12px;
  color: #cbd5f5;
}

.simple-hero {
  padding: 36px 24px;
  background: #ffffff;
  border-radius: 18px;
  margin: 24px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.content-block {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-block p {
  max-width: 820px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: #0f172a;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
  display: none;
  max-width: 320px;
  z-index: 100;
}

.cookie-banner button {
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  margin-right: 8px;
  cursor: pointer;
}

.cookie-accept {
  background: #1f6feb;
  color: #ffffff;
}

.cookie-reject {
  background: #f1f5f9;
}

.map-card {
  background: #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
}

.map-card img {
  width: 100%;
  height: 260px;
}

.notice {
  background: #fff7ed;
  border-left: 4px solid #f97316;
  padding: 14px;
  border-radius: 8px;
}
