.contact-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .hero__tagline {
    text-align: center;
  }

  .contact-info-map {
    flex: 1;
    min-width: 300px;
  }

  .map-container {
    text-align: center;
  }
  
  .contact-form {
    flex: 1;
    min-width: 300px;
  }

  .contact-info {
    margin-bottom: 1rem;
  }

  .contact-info p {
    margin-bottom: 0.5rem;
  }

  #officeLocationMap iframe {
    height: 400px;
    width: 400px;
  }

  .service-form {
    max-width: 100%;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .form-group textarea {
    height: 100px;
  }
  
  #serviceAreaMap {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #serviceAreaMap img {
    height: 500px;
    width: 500px;
  }

  .foot-info {
    text-align: center;
  }
  
  /* mobile-first media queries */
/* xs */
/* @media (min-width: 475px) {} */

/* sm */
@media (min-width: 640px) {
  .map-container {
    text-align: left;
  }
}

/* md */
/* @media (min-width: 768px) {} */

/* lg */
@media (min-width: 1024px) {
  .contact-container {
    flex-direction: row;
  }
}

/* xl */
@media (min-width: 1280px) {
  #officeLocationMap iframe {
    height: 400px;
    width: 450px;
  }
}

/* 2xl */
@media (min-width: 1536px) {
  #officeLocationMap iframe {
    height: 400px;
    width: 600px;
  }
}