.container {
  background-color: rgba(163, 182, 164, 0.2);
  padding: 20px 0;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
}

.content {
  width: 70%;
  display: flex;
  padding: 16px;
}
.leftContainer{
  display: flex;
  flex-direction: column;
  width: 40%;
  justify-content: center;
  align-items: center;
}
.title {
  color: green;
  margin-bottom: 16px;
}

.imageContainer {
  justify-content: center;
  align-items: center;
  padding: 16px;
}

.mapImage {
  width: 80%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .content {
    width: 95%;
  }
}
