.site-footer {
    background: #1e1e2f;
    color: #ccc;
    padding: 40px 20px 20px;
    font-family: "Segoe UI", sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-menu,
.footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li,
.footer-contacts li {
    margin-bottom: 10px;
}

.footer-menu a,
.footer-contacts a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover,
.footer-contacts a:hover {
    color: #7b68ee;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #888;
}

.footer-bottom a {
    color: #7b68ee;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}