
body {
    margin: 0;
    min-height: 100vh;
    display: flex; 
    flex-direction: column;
    align-items: center;
    line-height: 1.2; 
    font-family: 'Calibri Light', Calibri, sans-serif; 
    color: #000000;
    background-color: #F8F8F8;
}

header, main {
    width: 100%;
    max-width: 960px;
    padding-left: 2em;
    padding-right: 2em;
    background-color: #ffffff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
}

header {
    border-bottom: 1px solid grey;
    margin-bottom: 0.5em;
}

footer {
    width: 100%;
    max-width: 1025px;
    margin-top: auto;
    background-color: #424953;
    color: #ffffff; 
    text-align: center;
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 8.5pt; 
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
}


footer a {
    color: #ffffff; 
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: #F3C300; 
}

h1 {
    font-family: Calibri, sans-serif;
    font-weight: bold;
    font-size: 26pt;
    color: #1A3D6D;
    margin-top: 36pt;
    margin-bottom: 36pt;
}

h2 {
    font-family: Calibri, sans-serif;
    font-size: 20pt;
    color: #1A3D6D;
    margin-top: 18pt;
    margin-bottom: 12pt;
}

h3 {
    font-family: Calibri, sans-serif;
    font-size: 18pt;
    color: #202945;
    margin-top: 18pt;
    margin-bottom: 12pt;
}

p {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.site-header {
    display: flex;
    align-items: center;
    text-align: center;
    min-height: 7em;
    justify-content: space-between;
    position: relative;
    background-image: url('images/AdobeStock_134362781.jpg');
    background-size: cover;  
    background-position: 50% 0%;
}

.site-logo {
    color: #000000;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2em;
    font-weight: bold;
    width: 180px;
    height: 180px;
}

.navigation {
    display: flex;
}

.navigation-link {
    color: #374d94;
    padding: 0.7em;
    text-decoration: none;
    font-weight: bold;
}

.navigation-link:hover {
    color: #6484ef;
}


table {
    margin: 2em 0;
    border-collapse: collapse;
    width: 100%;
}

th, td {
    border: 1px solid #d7d7d7;
    padding: 0.2cm;
    text-align: left;
    font-size: 11pt;
}

thead th {
    font-family: 'Calibri Light', sans-serif;
    font-weight: bold;
    color: #ffffff;
    background-color: #202945;
}

tbody tr:nth-child(odd) {
    background-color: #ffffff; 
}

tbody tr:nth-child(even) {
    background-color: #F8F8F8;
};

form {
    max-width: 40em;
    border: 1px solid #e5e5e5;
    background-color: #f3f3f3;
    padding: 1.5em;
    margin: 2em 0;
    background-size: cover;  
    background-position: 50% 0%;
}


label {
    font-size: 0.9em;
}

input[type='text'], input[type='email'], textarea {
    border-style: solid;
    border-width: 1px;
    border-color: #b3b3b3;
    width: 100%;
    margin-bottom: 1em;
    padding: 0.3em;
}

input[type='radio'] {
    display: inline;
    margin-right: 0.5em;
}

textarea {
    resize: none;
}

input[type='submit'] {
    width: auto;
    padding: 0.5em 2em;
    background-color: #1e3da3;
    color: white;
    border-style: none;
    border-radius: 0.3em;
    margin: 1.5em 0 0 0;
}

.form-header {
    margin-top: 0;
}

.form-description {
    margin-bottom: 1.5em;
}

ul {
    list-style-type: circle;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em auto; /* Centers the image */
}

.cooler-img-layout {
    display: flex;
    justify-content: center; /* Groups the images in the middle of the screen */
    gap: 0.5em; /* Shrinks the empty space between them */
    margin: 2em 0;
}

.cooler-img-layout img {
    /* flex: 1; <-- Remove this line if it is still there */
    width: 250px; /* Locks the images to a smaller, fixed width */
    height: 180px; /* Keeps the heights perfectly uniform */
    object-fit: cover; 
    margin: 0; 
}