.site-footer {
    background: #f7f6ff;
    color: #111;
    padding: 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

.footer-main {
    padding: 50px 0 30px;
    background: linear-gradient(180deg, rgba(145, 151, 255, 0.18) 0%, rgba(219, 158, 255, 0.12) 45%, rgba(255, 184, 241, 0.06) 100%);
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.footer-nav-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
    position: relative;
    padding-bottom: 12px;
}

.footer-nav-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    font-size: 18px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.footer-bottom {
    background: #f0efff;
    padding: 25px 0;
    border-top: 1px solid #e2e0f5;
}

.footer-bottom-content {
    text-align: center;
}

.footer-info-block {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.footer-copyright a {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 8px;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: var(--primary-hover);
}

.footer-contact-line {
    font-size: 13px;
    color: #111;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-nav-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-contact-line {
        font-size: 12px;
    }
}
