.site-footer {
    background-color: #0f0f0f;
    color: #fff;
    padding: 40px 20px 20px 20px;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left img.footer-logo {
    width: 150px;
}

.footer-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.footer-center a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-center a:hover {
    color: #8cc63f;
}

.footer-right p {
    font-size: 14px;
}

.footer-right a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #8cc63f;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #999;
}

/* Адаптация */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-center {
        flex-direction: column;
        gap: 10px;
    }
}
