/* FOOTER */
.footer {
    background-color: #003c96;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-info {
    flex: 1;
    min-width: 250px;
}

.footer-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
}

.social-links {
    flex: 1;
    min-width: 250px;
}

.social-links h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #02a9d6;
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-legal {
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

.legal-links {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.legal-links a:hover {
    color: #02a9d6;
    text-decoration: underline;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-info p {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .legal-links {
        flex-direction: column;
        gap: 5px;
    }

    .separator {
        display: none;
    }
}