/* Базовые стили для футера */
.footer {
    background-color: #004c99;
    color: #ffffff;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-section {
    flex: 1 1 200px;
    margin-bottom: 20px;
}

/* Удаление маркеров */
.footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer li {
    list-style: none !important;
}

/* Копирайт */
.footer-info {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 20px;
}

/* Текст */
.footer-section p,
.footer-section a,
.footer-section li {
    color: #cccccc;
    font-size: 0.9em; 
    line-height: 1.6;
    text-decoration: none;
}

/* Заголовки */
.footer-section h3 {
    color: #ffffff;
    font-size: 1.1em;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffffff33;
    padding-bottom: 5px;
}

.footer-section a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-info p,
.footer-legal p {
    font-size: 0.8em;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-links img {
    width: 35px;
    height: 35px;
}

.social-links a:hover {
    transform: scale(1.1);
}

/* ПЛАНШЕТ: 2x2 сетка */
@media (min-width: 769px) and (max-width: 1200px) {
    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 40px;
    }
    
    .footer-section {
        margin-bottom: 0;
    }
    
    .footer-info {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
}

/* МОБИЛЬНЫЙ: только копирайт */
@media (max-width: 768px) {
    .footer-section:not(.footer-info) {
        display: none !important;
    }
    
    .footer-container {
        padding: 20px;
    }
    
    .footer-info {
        margin-top: 0;
    }
}