.site-footer {
    background-color: #f1f1f1;
    color: #242424;
    font: 16px/1.5625 Lato, sans-serif;
}

    .site-footer a {
        color: #0066cc; /* your link color */
        text-decoration: none; /* remove default underline */
        text-underline-offset: 3px; /* lift the underline a bit */
    }

        .site-footer a:hover {
            color: #ffd100;
        }

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.footer-section {
    flex: 1 1 200px;
    margin: 10px;
}

    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer-section address,
    .footer-section p {
        line-height: 1.5;
        margin: 0;
    }


.footer-cert img {
    max-width: 100%;
    height: auto;
}

.footer-bottom {
    background-color: #dae4ec;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* constrained flex layout */
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    /* keep the same horizontal padding as your other .footer-container */
    padding: 20px;
}

.footer-bottom p,
.footer-bottom .footer-nav {
    margin: 0;
}

.footer-bottom .logo {
    height: 24px;
    vertical-align: middle;
    margin-left: 8px;
}

.footer-nav {
    margin-top: 10px;
}

    .footer-nav a {
        margin: 0 5px;
    }
