* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1e1f23;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 80px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  background: #ffffff;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: #6a2b18;
  background: #f2ddd6;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #1e1f23;
  font-weight: 600;
  border-bottom: 2px solid transparent;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  margin-top: 28px;
}

.hero-text {
  flex: 1;
  background: #ffffff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.hero-visual {
  flex: 1;
  background: #d3d2d0;
  min-height: 360px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  border: none;
  background: #1f5d6a;
  color: #ffffff;
  padding: 12px 18px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
}

.button.secondary {
  background: #efe7d8;
  color: #1e1f23;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
  margin-top: 36px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  background: #ffffff;
  padding: 28px;
}

.panel.image {
  padding: 0;
  background: #c9ced3;
  min-height: 280px;
}

.panel.bg-insight {
  background-color: #d6d2c7;
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5a5d63;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: #1f5d6a;
}

.service-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: #f3eee6;
  padding: 16px;
  border-radius: 10px;
}

.form-card {
  background: #ffffff;
  padding: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #c9cbd0;
  font-family: inherit;
  font-size: 15px;
}

.inline-link {
  color: #1f5d6a;
  text-decoration: underline;
  cursor: pointer;
}

.footer {
  margin-top: 60px;
  padding: 24px;
  background: #f1f1f1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer a {
  color: #1f5d6a;
  text-decoration: none;
}

.references {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: #1f5d6a;
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.notice {
  background: #efe7d8;
  padding: 16px;
  border-radius: 10px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  padding: 20px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 28px;
}

@media (max-width: 900px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 14px;
    left: 14px;
  }
}
