:root {
    --bg2: #bdbdbd;
    --txt: #000000;
}

@media (prefers-color-scheme: dark) {
     :root {
        --bg2: #1a1a1a;
        --txt: #ffffff;
    }
}

.footer {
    background: var(--bg2);
    color: var(--txt);
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-left {
    font-size: 20px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bdbdbd;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    font-size: 13px;
    color: #8a8a8a;
}
