.site-footer {
    background: #111;
    color: #fff;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
}

/* Контейнер футера */
.footer-extra {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
}

/* Блок "Компания" во 2 колонке */
.footer-company {
    grid-column: 2;
}

/* Блок "Контакты" в 3 колонке */
.footer-contacts {
    grid-column: 3;
}

/* Заголовки */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

/* Текст */
.footer-item,
.footer-link {
    display: block;
    color: #d6d6d6;
    font-size: 15px;
    line-height: 1.7;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

/* Hover для ссылок */
.footer-link:hover {
    color: #ffffff;
}

/* Копирайт */
.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    font-size: 14px;
    color: #a0a0a0;
    text-align: center;
}

/* Адаптив */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 20px 20px;
    }

    .footer-extra {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-company,
    .footer-contacts {
        grid-column: auto;
    }

    .footer-title {
        margin-bottom: 12px;
    }
}