.map-container iframe {
  width: 100%;
  height: 300px;
  border: 50;
}

.color-control {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.color-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #1d4ed0;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.color-toggle:hover {
  background: #3b82f6;
}
h2{
  color: #1d4ed0;
}
.service-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 4px 10px rgba(53, 35, 131, 0.15);
}

