body {
    margin: 0;
    padding: 0;
    color: var(--dark-grey);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

#jump-to-content {
    position: absolute;
    top: -2.5em;
    padding: 0.5em 1em;
    background: var(--primary);
    color: var(--white);
    border-right: var(--dark-blue-border-style);
    border-bottom: var(--dark-blue-border-style);
    border-bottom-right-radius: 0.4em;
    transition: top 1s ease-out;
}

#jump-to-content:focus {
	top:0px;
    outline: none;
    transition: top 0.1s ease-in;
}

.header-bar, .footer-bar {
    height: 0.8em;
    background: var(--primary);
}

.header-bar {
    border-bottom: var(--dark-blue-border-style);
}

.footer-bar {
    border-top: var(--dark-blue-border-style);
}

.fixed-footer {
    position: fixed;
    bottom: 0;
    width: 100vw;
}

.container {
    max-width: 80%;
    margin: 0 auto;
}

.underlined-header {
    padding: 0.2em;
    font-size: inherit;
    font-weight: lighter;
    letter-spacing: 2px;
    border-bottom: var(--dark-blue-border-style);
}

.uppercase-header {
    margin-left: 0.4em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.flex-header {
    display: flex;
    align-items: center;
}

.flex-header *:not(:first-child) {
    margin-left: 1em;
    font-size: 0.95em;
}

.info-p {
    padding: 0 1em;
    text-align: justify;
    font-size: 14pt;
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.5em;
}

.info-ul {
    font-weight: bold;
    margin: 2em 0;
}

.button {
    padding: 0.4em 1em;
    cursor: pointer;
    background: var(--primary);
    color: white;
    font: inherit;
    font-weight: bold;
    border: var(--light-grey-border-style);
    border-radius: 0.5em;
}

.button:hover {
    filter: brightness(0.85);
}

.button-green {
    background: var(--green);
}

.button-light-red {
    background: var(--light-red);
}

.form-group {
    display: flex;
    align-items: baseline;
}

.form-group:not(:last-child) {
    margin-bottom: 1em;
}

.form-group label {
    width: 9em; /* Adjust as needed */
    margin-right: 1em;
    text-align: right;
}

.form-group input, .form-group textarea, .form-group select {
    flex: auto;
    resize: none;
    box-sizing: border-box;
}

.flex-form-container {
    display: flex;
}

.flex-form {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.flex-form .form-group input, .flex-form .form-group textarea, .flex-form .form-group select {
    width: 15em;
}

@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        margin: 0em 2em;
    }
}