html {
    height: 100%;
    margin: 0;
}

body {
    text-align: center;
    font-size: 12px;
    font-family: Verdana, Geneva, sans-serif;
    color: #000;
    background-color: #FFF;
}

footer {
    margin-top: auto; /* Push footer to bottom */
    padding: 15px;
    text-align: center;
    font-size: 8px;
    color: #333;
}

footer .copyright {
    font-size: 10px;
}

p {
    line-height: 2;
}

a:link {
    color: #666;
    text-decoration: none;
}

a:visited {
    text-decoration: none;
    color: #666;
}

a:hover {
    text-decoration: underline;
    color: #000;
}

a:active {
    text-decoration: none;
    color: #666;
}

.logos-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    gap: 30px;
    padding: 15px;
    margin-bottom: 15px;
}

.contact-cards-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: nowrap;
    gap: 30px;
}

img.primary-logo {
    padding-top: 30px;
    height: 280px;
}

img.secondary-logo {
    height: 55px;
    opacity: 0.5;
    filter: saturate(0.5);
    transition: filter 300ms, opacity 300ms;
}

img.secondary-logo:hover {
    opacity: 1;
    filter: unset;
}

@media (max-width: 1024px) {
    .logos-container {
        flex-direction: column;
        gap: 15px;
    }

    .contact-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    img.primary-logo {
        padding-top: 30px;
        height: 200px;
    }
}