css.footer-container {
    width: 100%;
    border-top: 1px solid #7272722b;
    background-color: var(--current-background);
}

.footer-content {
    padding: 60px 120px;
    text-align: center;
    padding-bottom: 1rem;
}

.brand-section {
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo svg,
.footer-container svg {
    overflow: visible;
}

.brand-description {
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 32px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    margin-top: 24px;
}

.social-links a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--current-blue-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

.footer-links {
    position: relative;
    z-index: 1;
}

.footer-links h3 {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    font-size: 12px;
    transition: opacity 0.3s;
    opacity: 0.6;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    padding: 24px 80px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-copyright {
    font-size: 14px;
    padding: 20px 0;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

    .footer-bottom {
        padding: 16px 40px;
    }
}