#contact-block table#contact-info {
    width: 100%;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 10px;
    margin-bottom: 40px;
    table-layout: fixed;
    border-collapse: collapse;
}

#contact-block table#contact-info td {
    width: 33%;
    box-sizing: border-box;
    vertical-align: top;
    padding-right: 5px;
}

#contact-block table#contact-info tr#contact-geos {
    font-weight: bold;
    font-size: 15pt;
    text-align: left;
    color: #e67e22;
}

#contact-block table#contact-info tr#contact-geos td {
    padding-left: 20px;
}

#contact-block table#contact-info tr#contact-names {
    font-size: 13pt;
}

#contact-block table#contact-info tr#contact-titles,
#contact-block table#contact-info tr#contact-phones {
    font-size: 12pt;
}

#contact-block table#contact-info tr#contact-emails {
    font-size: 11pt;
}

#contact-block table#contact-info tr#contact-phones {
}

#contact-block .contact-us {
    margin-top: 30px;
}

#contact-block .contact-us .form-row {
    margin: 20px 0;       /* 10px top and bottom margin */
    display: flex;        /* Puts label next to input/textarea */
    align-items: flex-start; /* Vertically aligns labels with the top of textareas */
}

#contact-block .contact-us .form-row label {
    width: 100px;         /* Fixed width so all fields align neatly */
    text-align: right;
    margin-right: 20px;   /* Space between label and input field */
    margin-left: 20px;
    color: #008dca;
    font-weight: bold;
}

#contact-block .contact-us .form-row .form-row-label-input {
    padding-top: 10px;
    margin-bottom: 0px;
}

#contact-block .contact-us .form-row .form-row-label-textarea {
    padding-top: 10px;
    margin-top: 5px;
}

#contact-block .contact-us .form-row .form-input {
    width: 500px;         /* Input field 200px wide */
    margin-right: auto;
    margin-top: 6px;
    padding-top: 3px;
    padding-bottom: 2px;
}

#contact-block .contact-us .form-row .form-dropdown {
    vertical-align: bottom;
    margin-top: 8px;
    padding-top: 2px;
    padding-bottom: 2px;
}

#contact-block .contact-us textarea {
    width: 500px;         /* Textareas 200px wide */
    height: 150px;
}

#contact-block .contact-us .form-row:has(.submit-button) {
    justify-content: flex-end; /* Pushes the button to the right side */
    width: calc(100px + 15px + 500px); /* Matches total width of label + margin + field */
}

