body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Calibri Light', sans-serif;
    font-size: 11pt;
    color: rgb(0, 0, 0);
    text-align: left;
    margin-top: 10pt;
    margin-bottom: 10pt;
    line-height: 1.2;
}

* {
    box-sizing: border-box;
}

header, main, footer {
    width: 100%;
    max-width: 960px;
    padding-left: 2em;
    padding-right: 2em;
}

header {
    background-color: rgb(255, 255, 255);
    border-bottom: 1px solid rgb(66, 73, 83);
    margin-bottom: 0.5em;
}

footer {
    margin-top: auto;
    background-color: rgb(32, 41, 69);
    color: rgb(255, 255, 255);
    align-self: center;
    text-align: center;
    padding: 2.5em 2em;
    font-family: 'Calibri Light', sans-serif;
    font-size: 8.5pt;
}

h1 {
    font-family: 'Calibri', sans-serif;
    font-weight: bold;
    font-size: 26pt;
    letter-spacing: -0.5pt;
    color: rgb(0, 0, 0);
    text-align: left;
    margin-top: 36pt;
    margin-bottom: 12pt;
    line-height: 1;
} 

h2 {
    font-family: 'Calibri', sans-serif;
    font-weight: normal;
    font-size: 20pt;
    color: rgb(26, 61, 109);
    text-align: left;
    margin-top: 18pt;
    margin-bottom: 12pt;
    line-height: 22pt;
} 

h3 {
    font-family: 'Calibri', sans-serif;
    font-weight: normal;
    font-size: 18pt;
    letter-spacing: -0.5pt;
    color: rgb(32, 41, 69);
    text-align: left;
    margin-top: 18pt;
    margin-bottom: 12pt;
    line-height: 1;
}

p {
    font-family: 'Calibri Light', sans-serif;
    font-size: 11pt;
    color: rgb(0, 0, 0);
    text-align: left;
    margin-top: 10pt;
    margin-bottom: 10pt;
    line-height: 1.2;
}

ul {
    list-style-type: disc;
    text-align: left;
    margin-top: 3pt;
    margin-bottom: 3pt;
    padding-left: 0.63cm;
    line-height: 1.2;
}

ul li {
    text-indent: -0.62cm;
    padding-left: 0.62cm;
}

ol {
    list-style-type: decimal;
    text-align: left;
    margin-top: 3pt;
    margin-bottom: 3pt;
    padding-left: 0.63cm;
    line-height: 1.2;
}

ol li {
    text-indent: -0.62cm;
    padding-left: 0.62cm;
}

.site-header {
    display: flex;
    align-items: center;
    min-height: 7em;
    justify-content: flex-start;
}

.site-header {
    display: flex;
    align-items: center;
    min-height: 7em;
}

.navigation {
    display: flex;
}

.navigation-link {
    color: #1A3D6D;
    padding: 0.7em;
    text-decoration: none;
    font-weight: bold;
}

.navigation-link:hover {
    color: #F3C300; /* Yellow hover */
}

/* Table styling */
table {
    margin: 2em 0;
    border-collapse: collapse;
    width: 100%;
}

thead {
    background-color: #202945;
}

th {
    font-family: 'Calibri Light', sans-serif;
    font-weight: bold;
    font-size: 11pt;
    color: rgb(255, 255, 255);
    text-align: left;
    padding: 0.2cm;
    margin-top: 3pt;
    margin-bottom: 3pt;
    line-height: 1;
}

td {
    border: 1px solid rgb(66, 73, 83);
    padding: 0.2cm;
    text-align: left;
    font-family: 'Calibri Light', sans-serif;
    font-size: 11pt;
    color: rgb(0, 0, 0); /*white text won't be visible so I changed it to black*/
    margin-top: 3pt;
    margin-bottom: 3pt;
    line-height: 1.1;
}

/* Form styling */
form {
    max-width: 40em;
    border: 1px solid #424953;
    padding: 1.5em;
    margin: 2em 0;
}

label {
    font-size: 0.9em;
}

input[type='text'], input[type='email'], textarea {
    border: 1px solid #424953;
    width: 100%;
    margin-bottom: 1em;
    padding: 0.3em;
}

textarea {
    resize: none;
}

input[type='submit'] {
    width: auto;
    padding: 0.5em 2em;
    background-color: #1A3D6D;
    color: white;
    border-style: none;
    border-radius: 0.3em;
    margin: 1.5em 0 0 0;
}

input[type='submit']:hover {
    background-color: #202945;
}
/* Footer */
footer p, footer a.navigation-link {
    color: #FFFFFF;
}

footer a.navigation-link:hover {
    color: #F3C300;
}