.contact-hero {
    background-image: url("/public_static/images/office.jpeg");
  }
  
  .contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    text-align: center;
    margin-top: 2rem;
  }
  
  .info-card {
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: -1px 0px 15px rgb(0 0 0 / 18%);
    flex: 1 1 250px;
  }
  
  .info-card a {
    color: #0ea5e9;
    text-decoration: none;
  }
  
  .contact-form-section .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-size: 1rem;
    width: 100%;
  }
  .map-container {

        width: 800px;
        justify-self: center;

  }
  
  .map-frame {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .map-frame iframe {
    width: 100%;
    height: 400px;
    border: 0;
  }

@media screen and (max-width: 768px) {

    .map-container {
      width: 100%;
    }

    .map-frame iframe {
      height: 300px;
    }

    form.contact-form {
        width: fit-content;
    }

  }
