/* ===== */
/* ФУТЕР */
/* ===== */
.site-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 40px 0;
    font-size: 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section p, .footer-section a {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    padding: 1.5rem 0;
    background-color: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.copyright p:first-child {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 1rem; /* Уменьшаем отступы на мобильных устройствах */
    }
}