.footer {
    position:relative;
    bottom: 0;
    background-color: var(--footer-bg-color);
    color: var(--footer-text-color);
    padding: 20px;
    color:var(--footer-text-color);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    margin: 10px;
    min-width: 200px;
}

.footer-column h3 {
    border-bottom: 1px solid var(--sun);
    padding-bottom: 5px;
    margin-bottom: 10px;
    color:var(--sun);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin: 5px 0;
}

.footer-column a {
    color: var(--footer-text-color);
    text-decoration: none;
    font-size: 14px;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid var(--footer-border-color);
}

.footer-bottom p{
    color:var(--footer-text-color);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        text-align: center;
    }
}