/* Standard Finmagine Footer Styles */
.footer {
    background: #03142a;
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Mobile responsiveness for footer */
@media (max-width: 768px) {
    .footer-links {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
}