/* Общий reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Навбар */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
    padding: 10px 20px;
}

.navbar .logo {
    height: 40px;
    max-width: 100%;
}

/* Футер */
.footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    margin-top: 30px;
}

.footer .footer-logo {
    display: block;
    margin: 10px auto 0;
    height: 35px;
    max-width: 100%;
}

/* Адаптивность */
@media (max-width: 600px) {
    .navbar .logo {
        height: 32px;
    }
    .footer .footer-logo {
        height: 28px;
    }
}

.site-logo { height: 32px; inline-size: auto; }
@media (min-width: 768px){ .site-logo { height: 40px; } }
