/* Footer Styles */
.site-footer {
    padding: 60px 120px;
    background: #0D162C;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    letter-spacing: 0.03em;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.footer-warning {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto 30px auto;
    width: 100%;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 30px auto;
    width: 80%;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00bfff;
}

.footer-info {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto 20px auto;
    width: 100%;
}

.footer-contact {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto 20px auto;
}

.footer-contact a {
    color: #f2f9fc;
    text-decoration: none;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Адаптивность */

/* Планшеты (до 1440px) */
@media (max-width: 1440px) {
    .site-footer {
        padding: 50px 80px;
    }
}

/* Планшеты (до 1024px) */
@media (max-width: 1024px) {
    .site-footer {
        padding: 40px 40px;
    }

    .footer-links {
        width: 90%;
        flex-wrap: wrap;
        gap: 16px;
    }
}

/* Мобильные устройства (до 768px) */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px;
    }

    .footer-logo {
        margin-bottom: 24px;
    }

    .footer-logo-img {
        width: 36px;
        height: 36px;
    }

    .footer-logo h2 {
        font-size: 18px;
    }

    .footer-warning {
        font-size: 13px;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: center;
        margin-bottom: 24px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-info {
        font-size: 11px;
        margin-bottom: 16px;
        line-height: 1.5;
    }

    .footer-contact {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}

/* Маленькие мобильные устройства (до 480px) */
@media (max-width: 480px) {
    .site-footer {
        padding: 32px 16px;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-logo-img {
        width: 32px;
        height: 32px;
    }

    .footer-logo h2 {
        font-size: 16px;
    }

    .footer-warning {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .footer-links {
        gap: 10px;
        margin-bottom: 20px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-info {
        font-size: 10px;
    }

    .footer-contact {
        font-size: 12px;
    }

    .footer-copyright {
        font-size: 11px;
    }
}