.site-footer {
    background: #7b2e2e;
    color: #fff;
    padding: 1.2rem 0;
    text-align: center;
    margin-top: 3rem;
}

.footer-content {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}

.footer-address {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.3rem;
    justify-content: center;
    align-items: center;
}

.footer-social-icon {
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: middle;
    transition: filter 0.2s;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 500;
    transition: color 0.2s;
    border-bottom: none; /* убираем линии под иконками */
}

.footer-link:hover {
    color: #a67c52;
    border-bottom: none; /* убираем линии при наведении */
}
