.map-container {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 8px;
}

.map-container img {
  width: 300px;
  height: auto;
  border-radius: 2px;
  max-width: 300px;
  margin-bottom: 10px;
  border: 1px solid #fff;
}

#map {
  width: 100%;
  height: 100%;
  border: none;
}

.overlay-card {
  position: absolute;
  top: 0px;
  z-index: 1000;
  width: 320px;
  height: 100%;
  background-color: var(--pantone-152);
  color: white;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  /* border-radius: 8px; */
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.overlay-card-left {
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-card-left > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.overlay-card-right {
  right: 0;
}

.overlay-card:hover {
  opacity: 1;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--pantone-152);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.address-box {
  background-color: var(--pantone-152);
  color: white;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .overlay-card {
    width: 90%;
    left: 5%;
    right: 5%;
    top: 10px;
  }

  .map-container {
    height: 600px;
  }
}
