﻿.footer1 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 38px;
    background-color: #0b3779;
    color: #fff;
    font-size: 13px;
    line-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
}

    .footer1 .brand {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .footer1 .brand img {
            width: 24px;
            height: 24px;
            border-radius: 4px;
            object-fit: cover;
        }

    .footer1 .links {
        display: flex;
        gap: 12px;
    }

        .footer1 .links a {
            color: #ffd700;
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .footer1 .links a:hover {
                color: #fff;
            }
