.contact-section {
    width: 100%;
    max-width: 115rem;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 1rem;
  }
  
  .contact-intro > * + * {
    margin-top: 1rem;
  }
  
  .contact-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
  }
  
  .contact-description {
    color: rgb(107 114 128);
  }
  
  .form-group-container {
    display: grid;
    gap: 1rem;
    margin-top: .5rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-label {
    margin-bottom: 0.5rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    display: flex;
    height: 3rem;
    width: 100%;
    border-radius: 0.375rem;
    font-size: 1.3rem;
    line-height: 2rem;
  }
  
  /*.form-input::placeholder,
  .form-textarea:focus-visible {
  }*/
  
  .form-input:focus-visible,
  .form-textarea:focus-visible {
    outline: 2px solid #00a8d6;
    outline-offset: 2px;
  }
  
  .form-textarea {
    min-height: 120px;
  }
  
  .form-submit {
    width: 100%;
    margin-top: 1.2rem;
    background-color: #027d9f;
    color: #fff;
    padding: 13px 5px;
    border-radius: 0.375rem;
  }

  .form-submit:hover {
    background-color: #00a8d6;

  }
  