/* Impressum & Datenschutz Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
    background: #f8fafc;
}

.container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
}

h1 {
    color: #6366f1;
    border-bottom: 3px solid #6366f1;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
}

h2 {
    color: #4f46e5;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

h3 {
    color: #667eea;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

p {
    margin-bottom: 15px;
    line-height: 1.7;
}

ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

li {
    margin-bottom: 8px;
    line-height: 1.6;
}

a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

strong {
    color: #1f2937;
    font-weight: 600;
}

small {
    color: #6b7280;
    font-size: 0.9rem;
}

.disclaimer-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid #6366f1;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.disclaimer-box h2 {
    color: #6366f1;
    margin-top: 0;
    margin-bottom: 15px;
}

.update-date {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-style: italic;
}