﻿.site-footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: var(--primary-color, #67595E);
    color: #fff;
    padding: 2.3rem 0 1.2rem 0;
    font-family: 'DM Sans', 'Inter', Arial, sans-serif;
    font-size: 1rem;
    border-top: 1px solid #31363c;
}

.footer-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2.3rem;
    margin-bottom: 0.7rem;
    flex-wrap: wrap;
    justify-content: center;
}

    .footer-links a {
        color: var(--accent-color, #F1C1C1) !important;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.18s, background 0.18s;
        padding: 0.1rem 0.5rem;
        border-radius: 0.2rem;
        background: none;
    }

        .footer-links a:hover {
            color: var(--primary-color, #67595E) !important;
            background: var(--accent-color, #F1C1C1);
            opacity: 0.92;
        }

.footer-copy {
    font-size: 0.97rem;
    color: #ffffff;
    text-align: center;
}

@media (max-width: 600px) {
    .footer-content {
        padding: 0 1rem;
        gap: 0.6rem;
    }

    .footer-links {
        gap: 1.1rem;
    }
}
