

/* Background image is now in its own div */
.video-hero-bg {
    background-image: url('../assets/images/contact-header.jpg');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    filter: brightness(75%);
}



.title {
  text-align: center;
  color: #1e1e1e;
  font-size: 32px;
  margin-bottom: 30px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  width: 300px;
  height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: scale(1.03);
}

.card h3 {
  margin: 0 0 10px;
  color: #1A1C5C;
}

.card p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.link {
  margin-top: 10px;
  color: #1A1C5C;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.link:hover {
  text-decoration: none;
}

.arrow {
  margin-left: 8px;
  font-size: 18px;
}

.map-container {
  width: 100%;
  max-width: 800px;
  height: 450px;
  margin: 40px auto;
  border: 4px solid white;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }
}