.site-footer {
    background: #800020;
    color: #f5f5f5;
    padding: 2.5rem 0;
    margin-top: 3rem;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.95rem;
}
.site-footer a {
    color: #f5f5f5;
    text-decoration: none;
}
.site-footer a:hover {
    text-decoration: underline;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}
.footer-left,
.footer-right {
    flex: 1 1 260px;
}
.footer-copy {
    margin-bottom: 0.75rem;
    font-weight: 500;
}
.footer-contact p {
    margin: 0.1rem 0;
}
.footer-right {
    text-align: right;
}
.footer-follow {
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.social-icons {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #f5f5f5;
    transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
    font-size: 1.1rem;
}
.social-icons a:hover {
    transform: translateY(-2px);
    background-color: #f5f5f5;
    border-color: #f5f5f5;
    color: #111;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-right {
        text-align: left;
    }
    .social-icons {
        justify-content: flex-start;
    }
}