/**
 * File: page_styles/footer_styles.css
 * Footer Styles
 * v1.0.0 - April 2025
 * 
 * These styles apply to the site footer used across all pages
 */

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.footer-info {
    flex: 1;
    text-align: left;
}

.footer-links {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-info,
    .footer-links {
        width: 100%;
        text-align: center;
    }
}