.fullwidth-section .nav-link {
      color: #607d8b;
    }

    .img-lupa-container {
  position: relative;
}

.lupa {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 0px solid #0d6efd;
  border-radius: 0%;
  background-repeat: no-repeat;
  pointer-events: none;
  display: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

@media (max-width: 991px) {
  .lupa {
    display: none !important;
  }
}

.text-map {
  text-align: justify;
  font-size: 12px !important;
}

.back-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--accent);
  transition: all 0.2s ease-in-out;
}

.back-link:hover {
  text-decoration: underline;
  color: var(--accent-dark);
  transform: translateX(3px);
}

.btn-warning {
  --btn-bg: var(--accent-dark);
  --btn-bg-hover: var(--accent);

  background-color: var(--btn-bg);
  border-color: var(--btn-bg);
  color: #fff;
}

.btn-warning:hover,
.btn-warning:focus {
  background-color: var(--btn-bg-hover);
  border-color: var(--btn-bg-hover);
  color: #fff;
}