.section-service-points {
  align-items: start;
}

.image-card.image-card--map {
  position: relative;
  overflow: visible;
}

.map-placeholder,
.map-frame {
  position: relative;
}

.map-placeholder > img,
.map-frame > iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}

.map-placeholder > img {
  object-fit: cover;
}

.map-badge-consent {
  position: absolute;
  left: 1.25rem;
  bottom: -3.25rem;
  z-index: 3;
  width: min(92%, 24rem);
}

.map-badge-consent__content {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  box-shadow:
    0 0.35rem 0.9rem rgba(0, 0, 0, 0.10),
    0 1rem 2rem rgba(0, 0, 0, 0.12);
}

.map-badge-consent__content strong {
  display: block;
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-heading);
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: var(--heading-letter-spacing);
  color: var(--dark-blue);
}

.map-badge-consent__content > span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--muted);
}

.map-badge-consent__check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.15rem;
  font-size: 0.92rem;
  line-height: 1.35;
}

.map-badge-consent__check input {
  margin-top: 0.2rem;
  flex: 0 0 auto;
}

.map-badge-consent__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.map-badge-consent__button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.image-card--map {
  margin-bottom: 4.5rem;
}


.checklist {
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.checklist li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.checklist li::before {
    content: "✔";
    position: absolute;
    top: 0px;
    left: 0px;
    color: var(--gold);
}

@media (max-width: 900px) {
  .section-service-points {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-placeholder > img,
  .map-frame > iframe {
    height: 360px;
  }
}

@media (max-width: 575.98px) {
  .map-badge-consent {
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    bottom: -4rem;
  }

  .image-card--map {
    margin-bottom: 5.25rem;
  }

  .map-placeholder > img,
  .map-frame > iframe {
    height: 320px;
  }

  .map-badge-consent__content {
    padding: 0.9rem 1rem;
  }

  .map-badge-consent__content strong {
    font-size: 1.15rem;
  }

  .map-badge-consent__content > span,
  .map-badge-consent__check {
    font-size: 0.88rem;
  }
}