.site-footer {
    background-color: #001c38;
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 35px;
    font-family: var(--font-body);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-logo img {
    height: 48px;
    width: auto;
    margin-bottom: 20px;
}

.footer-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: white;
    font-size: 18px;
}

.footer-social a:hover {
    background-color: white;
    color: #001c38;
}

.footer-bottom {
    width: 100%;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 12px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}