/* Footer Hauptcontainer */
footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 60px 20px;
}

/* Footer Inhaltscontainer */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

/* Footer Spalten */
.footer-col h3 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

/* Footer Links */
.footer-col ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

/* Copyright-Bereich */
.copyright {
    text-align: center;
    padding-top: 40px;
    color: var(--light-text);
    font-size: 12px;
}