/* Page Footer */
.page-footer {
    position: fixed;
    bottom: -10px;
    left: 200px;
    right: 0;
    width: auto;
    padding: 25px 0;
    border-top: 1px solid #ddd;
    background-color: #f9f9f9;
    z-index: 100;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.social-links a:hover {
    opacity: 0.7;
}

.social-links img {
    width: 32px;
    height: 32px;
    display: block;
}

.social-links svg {
    width: 32px;
    height: 32px;
    color: #6D6968;
}

.social-links a:hover svg {
    color: #222;
}

/* Mobile responsive footer */
@media screen and (max-width: 768px) {
    .page-footer {
        left: 0;
    }
}
