body, html {
    height: 100%; 
    margin: 0;
    display: flex;
    flex-direction: column;
}

header {
    /* Existing header styles, consider reducing padding if it's too large */
    padding: 10px 0; /* Reduced padding for a more compact header */
}

main {
    flex-grow: 0; /* Prevent main from stretching too much */
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to the start */
    align-items: center;
    text-align: center;
}

.logo {
    max-width: 150px; /* Adjust this value as needed */
    height: auto; /* Keeps the aspect ratio of the image */
    display: block;
    margin-left: auto;
    margin-right: auto; /* Centers the logo */
}
.content-wrapper {
    max-width: 75%;
    margin: 0 auto; /* Centers the div */
    text-align: justify; /* Justifies the text */
}
footer {
    background-color: #f1f1f1;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
