/* Footer Stilleri */
.footer {
    background: #00244f;
    padding: 1.2rem 0;
}

.footer .container {
    max-width: 100%;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-copy {
    color: rgba(254, 254, 254, 0.5);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(254, 254, 254, 0.5);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fefefe;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: rgba(254, 254, 254, 0.5);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #4c9fd4;
}

/* Responsive */
@media (max-width: 768px) {
    .footer .container {
        padding: 0 1rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        text-align: center;
    }

    .footer-links,
    .footer-social {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0;
    }

    .footer-copy {
        font-size: 0.78rem;
    }
}
