/* Footer Styles - Shared across all pages */

/* .footer {
    background: #f5f5f7;
    border-top: 1px solid #ddd;
    padding: 2rem 2rem;
    margin-top: 4rem;
} */

/* .footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
} */

/* .footer-text {
    color: #999;
    font-size: 0.85rem;
    text-align: center;
} */


.footer {
    background: #f5f5f7;
    border-top: none;
    padding: 2rem 2rem 2.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

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

.footer-link {
    color: #323438;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

.footer-link:hover {
    color: #000;
}

.footer-divider {
    display: none;
}

.footer-text {
    color: #393c41;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.01em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 1rem 2rem;
    }
    
    .footer-links {
        gap: 1rem;
        font-size: 0.7rem;
    }
    
    .footer-link {
        font-size: 0.7rem;
    }
    
    .footer-text {
        font-size: 0.7rem;
    }
}