.contact-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
    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-color);
    border: none;
    cursor: pointer;
    border-radius: 16px;
    font-weight: 500;
    font-size: 15px;
    margin-top: 20px;
}