/* =============== FOOTER STYLES =============== */
.footer {
    background-color: #f2f2f2;
    padding: 20px 0;
    border-top: 1px solid #dadce0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
}

.footer-link {
    color: #70757a;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-size: 13px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .footer-left, .footer-right {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
}