/* map_style.css – layout handled in style.css */
.container_map {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 90px 12px 30px;
}

.container_map iframe {
  width: 100%;
  max-width: 900px;
  height: 500px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

@media (max-width: 580px) {
  .container_map iframe { height: 360px; }
}
