body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Proxima Nova', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

body.text-page {
    justify-content: flex-start;
    text-align: left;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    margin: 0 auto 0.5rem auto;
}

.claim {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hint {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 400;
    margin-bottom: 45px;
}

.description {
    max-width: 600px;
    line-height: 1.7;
    font-size: 1.15rem;
    font-weight: 400;
    color: #b0b0b0;
    margin-bottom: 60px;
}

.text-content h1 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
    width: 100%;
}

.text-content h2 {
    font-size: 1.3rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.text-content p,
.text-content li {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-mail {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border: 1px solid #444;
    padding: 12px 30px;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 80px;
}

.contact-mail:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #666;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.back-link:hover {
    color: #fff;
}

.legal-footer {
    display: flex;
    gap: 25px;
    justify-content: center;
    width: 100%;
}

.legal-footer a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 400;
    transition: color 0.3s ease;
}

.legal-footer a:hover {
    color: #ffffff;
}

/* Animationen */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}