body {
    margin: 0;
    padding: 0;
    color: var(--dark-grey);
    font-family: Arial, Helvetica, sans-serif;
    background: rgb(39,84,138);
    background: linear-gradient(180deg, rgba(39,84,138,1) 10%, rgba(213,213,201,1) 82%);
    min-height: 100vh;
    position: relative;
    padding-bottom: 200px; /* Increased to accommodate the footer with logo */
    box-sizing: border-box;
}

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 {
    height: 0.8em;
    background: #27548A;
    border-bottom: var(--dark-blue-border-style);
}

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

.container {
    max-width: 80%;
    margin: 0 auto;
    padding-bottom: 0; /* Removed padding at bottom */
}

.underlined-header {
    padding: 0.4em 0.8em;
    font-size: 1.2rem;
    font-weight: lighter;
    letter-spacing: 2px;
    border-bottom: var(--primary-border-style);
    background-color: var(--primary);
    color: white;
    border-radius: 8px;
    display: inline-block;
    width: fit-content;
    margin: 1px auto 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.uppercase-header {
    margin-left: 0.4em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgb(0, 0, 0);
}

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

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

.data-disclaimer {
    text-shadow: 0 0 2px white, 0 0 6px white;
    font-weight: 600;
}

.info-div {
    padding: 1.5em 2em;
    line-height: 1.5em;
    color: black;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    margin: 1em 0;
}

.info-p {
    padding: 1.5em 2em;
    text-align: justify;
    font-size: 14pt;
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.5em;
    color: black;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    margin: 1em 0;
}

.info-ul:not(.info-div .info-ul) {
    margin: 0.5em 0 2em 0;
    color: black;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    padding: 1.5em 2em;
    list-style-position: inside;
}

.info-ul li:not(.info-ul li:last-child) {
    margin-bottom: 1em;
}

.info-ul a {
    color: revert;
    text-decoration: revert;
}

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

.button:hover:not(.button.disabled) {
    cursor: pointer;
    filter: brightness(0.85);
}

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

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

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

.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: 0;
    }
}