@import url('https://fonts.googleapis.com/css?family=Nunito+Sans');
:root {
    --blue: #2F3645;
    --white: #fff;
    --green: #2C7A7B;
    --cream: #ffffff;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Nunito Sans";
    color: var(--blue);
    background-color: var(--cream);
    display: flex;
    flex-direction: column; /* Ensures footer stays at bottom */
}
.logo {
    position: absolute;
    top: 30px;
    left: 30px;
}
.logo-img {
    max-width: 40px;
    height: 40px;
}
main {
    flex: 1; /* Takes remaining vertical space */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--cream);
}
.container {
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}
.row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.col-md-6 {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
h1 {
    font-size: 4em;
    margin: 15px 0px;
    font-weight: bold;
}
h2 {
    font-weight: bold;
}
p {
    font-size: 1.2em;
    line-height: 1.6;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: var(--cream); /* Example background color */
    color: var(--blue); /* Example text color */
}
footer p {
    font-size: 0.8em;
}
footer a {
    color: var(--blue); /* Set link color to white */
    text-decoration: none; /* Remove underline */
}
footer a:hover {
    text-decoration: underline; /* Underline on hover */
}