.site-footer {
        background-color: #000000;
        color: #a0aec0;
        padding: 80px 0 30px;
        font-family: 'Inter', sans-serif;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .site-footer .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }
    .footer-grid-5 {
        display: grid;
        grid-template-columns: 2.5fr 1fr 1fr 1fr 1.5fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    .footer-brand .footer-logo-wrap {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 30px;
    }
    .footer-logo-svg {
        width: 32px;
        height: 32px;
        color: #e60000;
        fill: #e60000;
    }
    .footer-brand-name {
        font-size: 1.4rem;
        font-weight: 700;
        color: #fff;
        letter-spacing: 2px;
        text-transform: uppercase;
    }
    .footer-brand-title {
        color: #fff;
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 16px;
    }
    .footer-brand-desc {
        color: #8a94a6;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 32px;
        max-width: 90%;
    }
    .social-links {
        display: flex;
        gap: 16px;
    }
    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.1);
        color: #fff;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    .social-link svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
    }
    .social-link:hover {
        background-color: #e60000;
        border-color: #e60000;
        color: #fff;
    }
    
    .footer-col h4 {
        color: #fff;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 24px;
        padding-bottom: 12px;
        display: inline-block;
        border-bottom: 2px solid #e60000;
    }
    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-col ul li {
        margin-bottom: 16px;
    }
    .footer-col ul li a {
        color: #8a94a6;
        text-decoration: none;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        transition: color 0.3s ease;
    }
    .footer-col ul li a::before {
        content: '›';
        color: #8a94a6;
        font-size: 1.4rem;
        margin-right: 8px;
        line-height: 1;
        transition: color 0.3s ease, margin-right 0.3s ease;
    }
    .footer-col ul li a:hover {
        color: #fff;
    }
    .footer-col ul li a:hover::before {
        color: #e60000;
        margin-right: 12px;
    }
    
    .contact-list .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
        color: #8a94a6;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .contact-item svg {
        width: 18px;
        height: 18px;
        color: #e60000;
        flex-shrink: 0;
        margin-top: 2px;
    }
    .contact-item a {
        color: #8a94a6;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .contact-item a:hover {
        color: #fff;
    }
    .contact-item.highlight svg,
    .contact-item.highlight span {
        color: #e60000;
        font-weight: 500;
    }
    
    .footer-bottom-bar {
        border-top: 1px solid rgba(255,255,255,0.05);
        padding-top: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
        color: #8a94a6;
    }
    .footer-bottom-links {
        display: flex;
        gap: 20px;
    }
    .footer-bottom-links span.divider {
        color: rgba(255,255,255,0.2);
    }
    .footer-bottom-links a {
        color: #8a94a6;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-bottom-links a:hover {
        color: #fff;
    }
    
    @media (max-width: 1024px) {
        .footer-grid-5 {
            grid-template-columns: 1fr 1fr 1fr;
        }
        .footer-brand {
            grid-column: span 3;
        }
    }
    @media (max-width: 768px) {
        .footer-grid-5 {
            grid-template-columns: 1fr 1fr;
        }
        .footer-brand {
            grid-column: span 2;
        }
        .footer-bottom-bar {
            flex-direction: column;
            gap: 16px;
            text-align: center;
        }
    }
    @media (max-width: 480px) {
        .footer-grid-5 {
            grid-template-columns: 1fr;
        }
        .footer-brand {
            grid-column: span 1;
        }
    }
