* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: #ffffff;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5f5f5f;
  max-width: 220px;
  text-align: right;
}

.hero {
  padding: 60px 48px 40px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 52px 48px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split.narrow {
  padding-top: 32px;
  padding-bottom: 32px;
}

.panel {
  flex: 1;
}

.panel.highlight {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.image-frame {
  background-color: #d4d1cc;
  border-radius: 18px;
  overflow: hidden;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-image {
  background-color: #cdd3d6;
  border-radius: 14px;
  overflow: hidden;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  border: none;
  background: #1b1b1b;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: #1b1b1b;
  border: 1px solid #1b1b1b;
}

.btn.ghost {
  background: #f6f4f1;
  color: #1b1b1b;
  border: 1px solid #999999;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.note {
  font-size: 0.95rem;
  color: #4c4c4c;
}

.metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 14px;
  min-width: 180px;
}

.service-select {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-btn {
  border: 1px solid #1b1b1b;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #b6b6b6;
  font-family: inherit;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  font-size: 0.95rem;
  color: #7a1f1f;
  margin-top: 10px;
}

.bg-news {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-map {
  background-image: url("https://images.unsplash.com/photo-1493612276216-ee3925520721?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-overlay {
  background: rgba(14, 14, 14, 0.7);
  padding: 48px;
  border-radius: 20px;
}

.footer {
  margin-top: auto;
  padding: 36px 48px;
  background: #ffffff;
  font-size: 0.9rem;
  color: #4d4d4d;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  max-width: 360px;
  display: none;
  gap: 10px;
  flex-direction: column;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #efefef;
  font-size: 0.85rem;
}

.content {
  padding: 40px 48px 60px;
}

.content .split {
  padding-left: 0;
  padding-right: 0;
}

.simple-list {
  padding-left: 18px;
}

@media (max-width: 980px) {
  .split,
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
