/* Footer Styles */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 28px 0 20px;
    margin-top: 60px;
}
.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.site-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 16px;
}
.site-footer .footer-logo {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}
.site-footer .footer-company p {
    font-size: 12px;
    color: #9CA3AF;
    line-height: 1.7;
    margin: 0;
}
.site-footer .footer-links-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.site-footer .footer-links-row a {
    font-size: 13px;
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}
.site-footer .footer-links-row a:hover {
    color: #fff;
}
.site-footer .footer-links-row .sep {
    color: #4B5563;
    font-size: 12px;
}
.site-footer .footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 14px;
    font-size: 12px;
    color: #6B7280;
}

@media (max-width: 768px) {
    .site-footer .footer-content {
        flex-direction: column;
        gap: 16px;
    }
    .site-footer .footer-links-row {
        flex-wrap: wrap;
    }
}
