/* Zusätzliche Styles für Impressum */
.text-link {
    color: var(--pink-accent);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.text-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--pink-accent);
    transition: width 0.3s ease;
}

.text-link:hover {
    color: var(--pink-accent);
}

.text-link:hover::after {
    width: 100%;
}