<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.contact-page {
  font-family: var(--font-family-body); 
  margin-block: 4rem 9rem;

  fieldset {
    border: none;
    padding: 0;
  }

  .wpcf7-submit {
    font-size: 16px;
    cursor: pointer;
  }

  .contact-page__content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .contact-page__contact-details-content {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
  }

  #page-title {
    --font-size: var(--step-5);
    font-family: var(--font-family-display);
    font-size: var(--font-size);
    line-height: 1.1;
    font-weight: 400;
    text-transform: uppercase;
    text-wrap: balance;
    margin-inline: auto;
    margin-block-end: 3rem;
    text-align: center;
  }

  div {
    margin: 0;
  }

  h2 {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-block-end: 1.2rem;
    font-weight: 400;
  }

  label {
    font-size: .875rem;
    line-height: 1.1;
    font-weight: 500;
    color: #000;
    text-transform: capitalize;
  }

  p {
    color: var(--color-neutral-dark);
    line-height: 1.5;
    margin-block: 0 1rem;
  }

  input:not([type="submit"]), 
  textarea {
    width: 100%;
    margin-block-start: .8rem;
    height: 44px;
    padding: 0 .5rem;
    border: 1px solid #A0A0A0;
  }

  textarea {
    height: 70px;
  }

  @media( width &gt;= 1024px) {
    .contact-page__content {
      flex-direction: row;
      justify-content: space-between;
      
      #page-title {
        grid-column: 1 / span 2;
        margin-block-end: 2rem;
      }
    }

    .contact-page__details {
      flex-basis: 20%;
    }

    .contact-page__contact-form {
      flex-basis: 73%;
    }

    .contact-page__full-name {
      display: flex;
      gap: 1.25rem;
  
      p {
        width: 100%;
      }
    }
  }
}</pre></body></html>