body {
    font-family: Arial, sans-serif; 
    font-size: 20px;
    margin: 0;
    padding: 0;
}
.banner {
    color: white;
    text-align: left;
    font-size: 30px;
    letter-spacing: 0.4em;
    padding: 0.5rem 3rem;
    background-image: url('./assets/banner.png');
    background-size: cover;
    background-position: center;
}
.menu {
    display: flex;
    justify-content: center;
    background-color: #333;
    font-size:20px;
}
.menu a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
}
.menu a:hover {
    background-color: #ddd;
    color: black;
}
.content {
    padding: 3rem;
    margin-bottom: 3rem;
    overflow: auto;
}
.content-2columns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.page-title {
    font-size: 30px;
    margin-bottom: 10px;
    margin-top: 0;
}

.images-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 40px;
}
.images-row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}
.images-row img,
.images-column img {
    max-height: 200px;
    max-width: 250px;
    margin: 10px;
}

.form-field {
    width: 50%;
}

.form-label {
    text-align: right;
    margin-top: 5px;
    margin-right: 5px;
    font-size: 16px;
    margin-bottom: 5px;
    margin-right: 10px;
}

.form-value {
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #999;
    padding: 5px;
}

.form-value::placeholder {
    color: #999;
    font-style: italic;
    resize: none;
}

.form-button-disabled {
    cursor: default;
    opacity: .4;
    filter: alpha(opacity = 40);
}

.form-value-invalid {
    margin-left: 0;
    border: 1px solid #d00000;
    background-color: #ffdcdc;
}

.form-req {

    color: red;
    cursor: default;
}

.form-req::title {
    content: "this field is required";
}


.contact-table {
    width: 50% !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    border-collapse: collapse !important;
}

.contact-table tr,
.contact-table body{
    padding: 0 !important;
}

.contact-table td {
    padding: 10px 0 !important;
    vertical-align: top  !important;
    width: auto !important;
}
.contact-table td:first-child {
    width: 20% !important;
}

.contact-table label {
    display: block !important;
}

.contact-table input,
.contact-table textarea {
    width: 100% !important;
}

/* .contact-table button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

.contact-table button:hover {
    background-color: #45a049;
} */

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    cursor: pointer;
}
.form-submit {
    line-height: 44px;
}
.form-submit, .button_theme_round {
    background-color: #6889af;
    border: 3px solid #6889af;
    color: #fff;
    font-size: 16px;
    padding: 0 45px;
    text-decoration: none;
}

.footer {
    font-size: 16px;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}
