#fw-section-image-with-text-1693264760 {

body {
  background: #f0f0f0;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 20px;
}

.infographic {
  position: relative;
  display: inline-block;
  margin: 20px auto;
}

.infographic img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Hotspot styles */
.hotspot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #00ff88;
  border: 2px solid #000;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.hotspot::after {
  content: attr(data-label);
  position: absolute;
  left: 120%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 4px 8px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hotspot:hover::after {
  opacity: 1;
}

}