footer {
    background-color: #010713;
    color: #5b6470;
    min-height: 120px;
    display: flex;
    align-items: center;
}

footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 120px;
    padding: 1rem 2rem;
    gap: 1.5rem;
}

.footer-logo {
    height: 100px;
    margin-top: -2rem;
}

.footer-copy,
.footer-privacy {
    font-family: 'Open Sans', 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    color: #5b6470;
}

.footer-privacy {
    cursor: pointer;
}

.footer-privacy:hover {
    color: #8d9db3;
}

@media (max-width: 768px) {
    footer .container {
        padding: 0 1rem;
    }

    .footer-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        min-height: 120px;
        padding: 1.25rem 1rem;
        gap: 1rem;
    }

    .footer-logo {
        margin-top: 0;
        margin-bottom: 0.5rem;
    }
}
