
/* Footer */
footer {
    background-color: #121212;
    color: white;
    padding: 60px 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-info p {
    max-width: 30ch;
    opacity: 0.7;
    margin-top: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.footer-column a {
    display: block;
    color: white;
    opacity: 0.7;
    text-decoration: none;
    margin-bottom: 12px;
    transition: opacity var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: white;
    opacity: 0.5;
    text-decoration: none;
    font-size: 0.875rem;
    transition: opacity var(--transition-fast);
}

.footer-legal a:hover {
    opacity: 0.8;
}

.footer-copyright p {
    opacity: 0.5;
    font-size: 0.875rem;
    margin: 0;
}
