footer {
    background-color: #33333372;
    color: #ffffff;
    text-align: center;
    padding: 20px 10px;
    margin-top: 500px; /* Footer weiter unten */
    width: 100%;
    box-sizing: border-box;
    border-radius: 15px; /* Abrunden der Ecken */
}

footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Abstand zwischen Icon und Text */
}

footer a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 600px) {
    .footer-links {
        flex-direction: column;
        gap: 5px;
    }
}

.footer-links svg {
    width: 24px;
    height: 24px;
    display: inline-block;
}
