/* Стили для footer */
body .footer {
    background-color: #1a3787;
    color: white;
    padding: 1rem 2rem;
    margin-top: auto;
}

body .footer p {
    margin: 0;
    color: white;
}

/* Ссылка на политику конфиденциальности */
body .footer .footer-privacy-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

body .footer .footer-privacy-link:hover {
    color: rgba(255, 255, 255, 1);
    text-decoration: underline;
}

/* Логотип ФАСИЭ */
body .footer .fasie-logo {
    height: 3.4rem;
    width: auto;
}

/* Текст поддержки */
body .footer .fasie-text {
    font-size: 0.75rem;
    line-height: 1.3;
    color: rgba(255, 255, 255);
    max-width: 500px;
}

/* Иконки мессенджеров */
body .footer-icons .messenger-icon {
    display: inline-block;
    color: #ffffff !important;
    font-size: 28px;
    margin-left: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

body .footer-icons .messenger-icon:hover {
    color: rgba(255, 255, 255, 0.7) !important;
    transform: translateY(-2px);
}

/* Убираем фон у иконок */
body .footer-icons .messenger-icon.telegram,
body .footer-icons .messenger-icon.whatsapp,
body .footer-icons .messenger-icon.youtube {
    background-color: transparent;
}

/* Адаптивность */
@media (max-width: 992px) {
    body .footer {
        padding: 1rem 1.5rem;
    }
    body .footer .fasie-logo {
        height: 2.6rem;
    }
    body .footer .fasie-text {
        font-size: 0.7rem;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    body .footer {
        padding: 1rem;
    }
    body .footer .fasie-text {
        font-size: 0.65rem;
        max-width: 100%;
        white-space: normal;
    }
    body .footer-icons .messenger-icon {
        font-size: 24px;
        margin: 0 10px;
    }
    /* На мобильных — все элементы по центру */
    body .footer .row > div {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    body .footer {
        padding: 0.8rem 0.5rem;
    }
    body .footer .fasie-logo {
        height: 2.4rem;
    }
    body .footer .fasie-text {
        font-size: 0.6rem;
    }
    body .footer-icons .messenger-icon {
        font-size: 22px;
        margin: 0 8px;
    }
}