.site-footer {
    padding: 3em 5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2em solid #ddd; /* thin separator above the footer */
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 2.5em;
}

.footer-email {
    margin-top: 2em;
    font-weight: 700;
}

.footer-location {
    margin-top: 0.2em;
    font-weight: 700;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 2em;
}

.footer-right a {
    text-decoration: none;
    color: inherit;
    font-size: 1em;
    font-weight: 400;
}

.footer-right a:hover {
    color: #666;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2em 1.5em;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5em;
    }

    .footer-right {
        flex-wrap: wrap;
        gap: 1.5em;
    }
}
