.footer-container {
    background-color: #f5f7fa;
    width: 100%;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    flex-direction: column; /* всё в колонку */
    align-items: center;    /* по центру */
    text-align: center;
    gap: 5px;
}

.footer-left,
.footer-right {
    width: auto; /* не растягиваем */
    text-align: center;
}


.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    text-decoration: none;
}

.footer-links a{
    color: #333; /* цвет текста */
    text-decoration: none;
    transition: all 0.3s ease; /* плавный переход цвета */
}

.footer-links a:hover {
    color: #007bff; /* цвет текста при наведении */
    text-decoration: underline; /* подчеркивание при наведении */
}