/* footer.css */

.footer {
    width: 100%;
    background: #222;
    color: #fff;
    padding: 30px 20px 15px 20px;
    font-family: 'Arial', sans-serif;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo a {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
}

.footer-contacts p, .footer-contacts a {
    margin: 4px 0;
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
}

.footer-contacts a:hover {
    color: #ff4800;
}

.footer-social a {
    margin-right: 15px;
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
}

.footer-social a:hover {
    color: #ff4800;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #aaa;
}

/* Адаптивность */
@media (max-width: 992px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-social {
        margin-top: 15px;
    }
}

@media (max-width: 560px) {
    .footer {
        padding: 20px 15px 10px 15px;
    }
    .footer-logo a {
        font-size: 20px;
    }
    .footer-contacts p, .footer-contacts a, .footer-social a {
        font-size: 13px;
    }
}
