/* Footer Styles */
.site-footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
    color: #333;
    margin-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.footer-text {
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

.footer-text a {
    color: #333;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

/* Ensure footer stays at bottom */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1 0 auto;
}

.site-footer {
    flex-shrink: 0;
}