.site-footer {
    background-color: #1a5e9e; /* Тёмно‑синий фон */
    color: white;
    padding: 40px 0;
    margin-top: 60px;
    width: 100%;
}

.footer-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 0 15px;
}

.footer-column h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #e0e7ff;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
    text-decoration: underline;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-column {
        text-align: center;
        margin: 20px 0;
        min-width: 100%;
    }
}