.map-section {
  padding: 60px 20px;
  background: #f8f9fa;
  max-width: 1640px;
  margin: 0 auto;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.map-image {
  width: 100%;
  height: auto;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-overlay .region {
  position: absolute;
  background: var(--primary-color);
  opacity: 0.3;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

.map-overlay .region:hover {
  opacity: 0.5;
}

.map-legend {
  margin-top: 20px;
  text-align: center;
  color: var(--text-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .map-section {
    padding: 40px 20px;
  }
}
