.footer {
    position: relative; /* Для позиционирования линии */
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 50px 50px 30px;
    background: #1a1a1a; /* Глубокий темный цвет */
    color: #cecece;
    text-align: left;
    gap: 40px;
}

/* Линия переливания цветов */
.footer-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2ecc71, #27ae60, #3498db, #2ecc71);
    background-size: 300% 100%;
    animation: gradient-move 5s linear infinite;
}

@keyframes gradient-move {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Стилизация колонок */
.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p, .footer-col ul {
    font-size: 14px;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col a {
    color: #cecece;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #2ecc71; /* Подсвечиваем ссылки при наведении вашим цветом */
}

/* Стили соцсетей */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 5px;
    width: fit-content;
}

.social-links a:hover {
    background: rgba(46, 204, 113, 0.2);
}
