/* ===== Футер с контактами ===== */
.footer-contacts {
    margin-top: 40px;
    padding: 30px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.footer-contacts__inner {
    max-width: 800px;
    margin: 0 auto;
}

.footer-contacts__title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.footer-contacts__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
}

.footer-contacts__list li {
    display: inline-block;
}

.footer-contacts__list a {
    color: #2a6df4;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

.footer-contacts__list a:hover {
    color: #1e5bd4;
    text-decoration: underline;
}

.footer-contacts__copy {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Адаптив для мобильных */
@media (max-width: 600px) {
    .footer-contacts__list {
        flex-direction: column;
        gap: 10px;
    }
}