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

  .contact-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    gap: 30px;
    padding: 60px 0 60px 0;
  }

  .contact-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-text-color);
  }

  .contact-subheading {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--secondary-text-color);
    padding-bottom: 20px;
    text-align: center;
  }

  .small-text-field {
    height: 56px;
    width: 265px;
    border-radius: 4px;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-text-color);
    margin-bottom: 20px;
  }

  #fname {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  #email {
    height: 56px;
    width: 265px;
    border-radius: 4px;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-text-color);
    margin-bottom: 20px;
  }

  #organization-name {
    height: 56px;
    width: 265px;
    border-radius: 4px;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-text-color);
    margin-bottom: 20px;
  }

  #product-type-dropdown {
    height: 56px;
    width: 295px;
    border-radius: 4px;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-text-color);
    margin-bottom: 20px;
    appearance: none;
  }

  #about-project-field {
    height: 150px;
    width: 265px;
    border-radius: 4px;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-text-color);
    margin-bottom: 20px;
    resize: none;
  }

  #submit-button {
    height: 56px;
    width: 300px;
    background-color: white;
    color: var(--primary-text-color);
    border: none;
    cursor: pointer;
    border-radius: 16px;
    font-weight: 500;
    font-size: 15px;
    margin-top: 10px;
  }
}

@media screen and (min-width: 481px) {
  .contact-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    gap: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
    height: 100vh;
  }

  .contact-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-text-color);
  }

  .contact-subheading {
    font-size: 18px;
    font-weight: 400;
    color: var(--secondary-text-color);
    padding-bottom: 20px;
  }

  .small-text-field {
    height: 56px;
    width: 265px;
    border-radius: 4px;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-text-color);
    margin-bottom: 20px;
  }

  #fname {
    margin-right: 30px;
  }

  #email {
    height: 56px;
    width: 595px;
    border-radius: 4px;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-text-color);
    margin-bottom: 20px;
  }

  #organization-name {
    height: 56px;
    width: 595px;
    border-radius: 4px;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-text-color);
    margin-bottom: 20px;
  }

  #product-type-dropdown {
    height: 56px;
    width: 625px;
    border-radius: 4px;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-text-color);
    margin-bottom: 20px;
    appearance: none;
  }

  #about-project-field {
    height: 150px;
    width: 595px;
    border-radius: 4px;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-text-color);
    margin-bottom: 20px;
  }

  #submit-button {
    height: 56px;
    width: 625px;
    background-color: white;
    color: var(--primary-text-color);
    border: none;
    cursor: pointer;
    border-radius: 16px;
    font-weight: 500;
    font-size: 15px;
    margin-top: 20px;
  }
}