html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

.footer-spacer {
    height: 150px;
    flex-shrink: 0;
}

.site-footer {
    background-color: #e8e8e8;
    color: #555;
    text-align: center;
    padding: 24px 32px;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid #d0d0d0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    margin-top: auto;
}

.footer-text {
    display: inline;
}

.footer-separator-mobile {
    display: none;
}

.footer-link {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #333;
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .footer-separator,
    .footer-separator-mobile {
        display: none;
    }

    .footer-text,
    .site-footer .footer-link {
        display: block;
        margin: 8px 0;
    }

    .site-footer .footer-link:last-of-type {
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 20px;
        line-height: 1.5;
    }
}

