@import url("theme.css");


/* Footer */
.footer {
    background: var(--dark);
    padding: 30px 20px;
    text-align: center;
    color: white;
    border-radius: 20px;
    margin-bottom: 100px;
}

.footer * {
    color: white;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin: 0 auto 15px;
    /* filter: brightness(0) invert(1); */
}

.company-name {
    font-weight: 700;
    font-size: 16px;
    margin: 10px 0;
}

.company-address {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--secondary);
}

.copyright {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 20px;
}