.site-footer {
    background: #f9f9f9; 
    width: 100%;
    padding: 40px 0;
}
.footer-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    gap: 40px; 
}
.footer-left, .footer-right {
    flex: 0 0 50%;
}
.footer-left h2, .footer-right h2 {
    font-family: "PT Mono", monospace !important;
    font-weight: 700; 
    font-size: 15px;
    margin-bottom: 20px;
}
.footer-left ul, .footer-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-left ul li, .footer-right ul li {
    margin-bottom: 15px;
}
.footer-left ul li a, .footer-right ul li a {
    font-family: "PT Mono", monospace !important;
    font-weight: 400; 
    font-size: 15px;
    color: #333333;
    text-decoration: none;
}
.footer-left ul li a:hover, .footer-right ul li a:hover {
    text-decoration: underline;
}

/* Адаптивность для футера */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 0;
    }
    .footer-inner {
        flex-direction: column;
        gap: 30px;
    }
    .footer-left, .footer-right {
        flex: 0 0 100%;
    }
}
@media (max-width: 480px) {
    .site-footer {
        padding: 20px 0;
    }
    .footer-inner {
        padding: 0 10px;
    }
    .footer-left h2, .footer-right h2 {
        margin-bottom: 15px;
    }
    .footer-left ul li, .footer-right ul li {
        margin-bottom: 10px;
    }
}
@media (max-width: 360px) {
    .site-footer {
        padding: 15px 0;
    }
    .footer-inner {
        padding: 0 8px;
    }
}