/* Impressum Page Specific Styles */
[data-theme="light"] .impressum-content {
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(79, 70, 229, 0.2);
}

[data-theme="light"] .impressum-block {
    border-bottom: 1px solid rgba(79, 70, 229, 0.1);
}

[data-theme="light"] .impressum-footer {
    border-top: 1px solid rgba(79, 70, 229, 0.2);
}
.impressum-section {
    padding-top: 120px;
    padding-bottom: 4rem;
    min-height: 100vh;
    background: var(--dark-bg);
}

.impressum-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 3rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.impressum-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.impressum-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.impressum-block h2 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.impressum-block h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Mogra', cursive;
}

.impressum-block h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.impressum-block h5 {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.impressum-block p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

[data-theme="dark"] .impressum-block p {
    color: #cbd5e1;
}

.impressum-block strong {
    color: var(--text-light);
}

.impressum-block ul {
    margin-top: 0.5rem;
    margin-left: 2rem;
    color: var(--text-dark);
}

[data-theme="dark"] .impressum-block ul {
    color: #cbd5e1;
}

.impressum-block ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.impressum-block a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-block a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.impressum-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    text-align: center;
}

.impressum-footer p {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .impressum-title {
        font-size: 2rem;
    }
    
    .impressum-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .impressum-block h2 {
        font-size: 1.1rem;
    }
    
    .impressum-block h3 {
        font-size: 1rem;
    }
}