/* Footer Styles */
.footer {
    background-color: #FEFAF3 !important;
    /*box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);*/
    padding: 2rem 1.5rem;
    margin-top: auto;
}

.footer_auth {
    /*background-color: #FEFAF3 !important;*/
    /*box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);*/
    padding: 2rem 1.5rem;
    margin-top: auto;
}


.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f0a900;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: #666;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    color: #f0a900;
    transform: translateY(-2px);
}

.footer-copyright {
    color: #888;
    font-size: 0.85rem;
    text-align: center;
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 1rem;
    }
    .footer-links {
        gap: 1rem;
        justify-content: center;
        text-align: center;
    }
    .footer-social {
        gap: 1.2rem;
    }
}