* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e2a2f;
  background: #f7f8fa;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  padding: 6px 10px;
  background: #ffedd1;
  color: #8a5a00;
  border-radius: 999px;
  font-size: 12px;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 36px;
  margin: 56px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.center {
  justify-content: center;
}

.hero {
  margin-top: 10px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 6px;
  background: #1e2a2f;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn.light {
  background: #eef2f5;
  color: #1e2a2f;
}

.inline-link {
  color: #1e2a2f;
  text-decoration: underline;
}

.image-frame {
  background: #dce4ea;
  border-radius: 16px;
  overflow: hidden;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(20, 35, 50, 0.08);
}

.service-card img {
  width: 120px;
  height: 90px;
  border-radius: 10px;
}

.price {
  font-weight: 700;
  color: #1f7a4d;
}

.section-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(16, 25, 40, 0.08);
}

.muted {
  color: #51616c;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1e2a2f;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 100;
}

.sticky-cta a {
  color: #fff;
  text-decoration: underline;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border: 1px solid #ccd6df;
  border-radius: 8px;
  font-size: 14px;
}

.footer {
  padding: 48px 0 24px;
  border-top: 1px solid #d5dde4;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 18px 24px;
  box-shadow: 0 -8px 24px rgba(20, 35, 50, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 200;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.highlight {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.highlight .section-block {
  background: rgba(15, 24, 35, 0.8);
  color: #ffffff;
}

.accent {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.accent .section-block {
  background: rgba(20, 35, 50, 0.82);
  color: #ffffff;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
