/* MeinSanierer - Rechtliche Seiten (Impressum, AGB, Datenschutz, etc.) */

:root {
    --ink: #18181b;
    --ink2: #3f3f46;
    --muted: #71717a;
    --ground: #fafaf9;
    --surface: #ffffff;
    --border: #e4e4e7;
    --amber: #f53003;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ground);
    color: var(--ink);
    line-height: 1.6;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 250, 249, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

.nav-link {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--ink);
}

/* Content */
.content {
    max-width: 900px;
    margin: 80px auto 120px;
    padding: 0 24px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--ink);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 3rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--ink);
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--ink);
}

p,
ul,
ol {
    margin-bottom: 1rem;
    color: var(--ink2);
}

ul,
ol {
    padding-left: 24px;
}

strong {
    color: var(--ink);
}

a {
    color: var(--amber);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Highlight Box (für AGBs) */
.highlight {
    background: #fff5f2;
    padding: 20px;
    border-left: 4px solid var(--amber);
    margin: 24px 0;
    border-radius: 8px;
}

.highlight strong {
    color: var(--amber);
}

/* FAQ Items (für Hilfe-Seite) */
.faq-item {
    background: var(--surface);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 0;
    color: var(--ink);
}

/* Contact Box (für Hilfe-Seite) */
.contact-box {
    background: var(--surface);
    padding: 32px;
    border-radius: 12px;
    border: 2px solid var(--amber);
    margin-top: 40px;
    text-align: center;
}

.contact-box h2 {
    margin-top: 0;
}

.contact-box a {
    color: var(--amber);
    font-weight: 600;
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 40px 24px;
    text-align: center;
}

footer a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    margin: 0 12px;
}

footer a:hover {
    color: var(--ink);
}

/* Responsive */
@media (max-width: 768px) {
    .content {
        padding: 0 20px;
        margin: 60px auto 80px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
}
