/* Contact Form and related elements */
.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-info-icon i {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.registration-form {
  border-radius: 8px;
}

.registration-form label {
  font-weight: 500;
}

/* Responsive map container */
.map-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (height / width) */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #f0f0f0; /* Placeholder background */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
