.mse-map-card-container {
  position: relative;
  width: 100%;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.mse-map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mse-map-card {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  max-width: 380px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mse-map-label {
  display: inline-block;
  background-color: #4299e1;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.mse-map-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
}

.mse-map-description {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.mse-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mse-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  color: #374151;
  font-size: 0.9rem;
}

.mse-contact-list i {
  color: #4299e1;
}

@media (max-width: 768px) {
  .mse-map-card {
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 2rem);
  }
}
