.footer {
    background-color: var(--text-primary);
    color: #BDBDBD;
    padding: var(--spacing-xl) 0;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
}

.footer-section h3 {
    color: var(--text-on-primary);
    font-size: 16px;
    margin-bottom: var(--spacing-md);
}

.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-section a {
    color: #BDBDBD;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--text-on-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    border-top: 1px solid #424242;
    font-size: 12px;
}
