
.footer {
    background: #F0F0F0;
    margin-top: auto;
    padding: 22px 40px;
    border-top: none;
    position: relative;
    width: 100%;
}

.footer-content {
    text-align: center;
    font-family: 'TT Norms Pro', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: var(--tt-blue);
}

.footer-link {
    color: var(--tt-blue);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 0.7;
    text-decoration: none;
}

.footer-separator {
    color: var(--tt-blue);
    margin: 0 8px;
}

/* Mobile Anpassungen */
@media (max-width: 767px) {
    .footer {
        padding: 22px 12px;
    }

    .footer-content {
        font-size: 12px;
        line-height: 16px;
        white-space: nowrap;
    }

    .footer-separator {
        margin: 0 4px;
    }
}