.map-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
  width: 100%;
  margin-top: 6rem;
  /* Removed max-width to allow the card to grow */
}

.card {
  background-color: #014d4d;
  padding: 2rem;

  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  text-align: center;
  max-width: 80rem; /* Increased max-width to make the card wider */
  width: 100%;
}
.title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.map-container {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  height: 450px;
  margin-bottom: 1.5rem;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border-width: 0;
}

@media (max-width: 768px) {
  .card {
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .map-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 1.25rem;
  }

  .map-card {
    display: none;
  }
}

a.review-link {
  transition: all 0.3s ease;
  display: inline-block;
  padding: 10px 18px;
  margin: 0;
  background-color: #014d4d;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

a.review-link:hover {
  color: #ffdd00;
  transform: scale(1.05);
}
