.fullscreen-banner {
  padding-top: 10px;
  max-height: 60vh;
  overflow: hidden;
  position: relative;
}

.fullscreen-banner img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner-overlay {
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.contact-form{
  background-color: #E7F1F1;
}
.info-icon {
  background-color: #16313A;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  min-height: 45px;
  transition: transform 0.3s ease;
}

.info-icon:hover {
  transform: scale(1.1);
  color: #16313A;
  background-color: #fff;
  border: 1px solid #16313A;
}

.info-card {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

.social-icons a {
  color: #6C703D;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #16313A !important;
}
.button{
  color: #fff;
  background-color: #16313A;
  border-radius: 22px;
  width: 100px;
  padding: 4px;
  text-align: center;
  align-items: center;
  justify-content: center;
  border: none;
}