.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 50px;
  background-image: url("../img/bg1.png");
  flex-wrap: wrap; /* allow wrapping on small screens */
}

.contact-text {
  flex: 1;
  min-width: 280px;
  max-width: 50%;
  margin-right: 40px;
}

.contact-subtitle {
  color: #a3c644;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-title {
  color: white;
  font-weight: bolder;
  font-size: 2.2em;
  margin-bottom: 20px;
}

.contact-description {
  color: white;
  font-weight: 500;
  line-height: 1.8;
}

.contact-map {
  flex: 1;
  min-width: 280px;
  max-width: 700px;
  text-align: center;
}

.contact-map iframe {
  width: 100%;
  max-width: 700px;
  height: 400px;
  border: 0;
  border-radius: 8px;
}

@media (max-width: 992px) {
  .contact-section {
    flex-direction: column;
    padding: 40px 20px;
  }
  .contact-text, .contact-map {
    max-width: 100%;
    margin: 0 0 30px;
  }
  .contact-title {
    font-size: 1.8em;
    text-align: center;
  }
  .contact-subtitle, .contact-description {
    text-align: center;
  }
}
