.body-map-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  margin: 40px auto;
  max-width: 1000px;
}

.body-map {
  position: relative;
  max-width: 450px;
}

.body-img {
  width: 100%;
  display: block;
}

.hotspot:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.hotspot.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

.info-panel {
  flex: 1;
  min-width: 250px;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info-panel h2 {
  color: #479ff8;
  margin-bottom: 10px;
}

.info-panel p {
  color: #333;
  line-height: 1.6;
}

.treatment-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: block;
}

.treatment-image.visible {
  opacity: 1;
}

#treatment-info {
  opacity: 1;
  transition: opacity 0.3s ease;
}