.footer {
    background: var(--header-bg, #131e35);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    margin-top: auto;
}

.footer-left, .footer-right {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.footer-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.08);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    background: rgba(255,255,255,0.12);
    color: white;
    transform: translateY(-1px);
}

.footer-link i {
    font-size: 0.9rem;
}

.footer-text {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
} 