.footer-legal-section {
    font-family: var(--wd-text-font);
    font-size: calc(var(--wd-text-font-size) * 0.75);
    line-height: var(--wd-text-line-height);
    color: var(--wd-text-color);
    max-width: var(--wd-container-w);
    letter-spacing: 0.05em;
}

.footer-copyright {
    font-weight: var(--wd-title-font-weight);
    color: inherit;
    margin-bottom: 15px;
}

.footer-link, .footer-phone {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.footer-link:hover, .footer-phone:hover {
    color: var(--wd-alternative-color);
    border-bottom-color: var(--wd-alternative-color);
}

.footer-disclaimer {
    color: inherit;
    margin-bottom: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-contacts {
    color: inherit;
    margin-bottom: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .footer-legal-section {
        font-size: 11px;
        padding: 15px;
    }
}