/* Shared Styles für statische Seiten */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;
    font-size: 0.9375rem;
    color: #1a1a1a;
    line-height: 1.6;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.06);
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #2e6632;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
    transition: all 0.2s ease;
}

.back-link:hover {
    transform: translateX(-2px);
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #2e6632;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    line-height: 1.2;
}

h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 32px;
    margin-bottom: 16px;
}

h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-top: 20px;
    margin-bottom: 12px;
}

section {
    margin-bottom: 32px;
}

p {
    margin-bottom: 12px;
    color: #374151;
}

ul {
    margin-left: 24px;
    margin-bottom: 12px;
}

li {
    margin-bottom: 8px;
    color: #374151;
}

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

.last-updated {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 0.875rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        border-radius: 0;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.125rem;
    }
}
