/* Neuroarchive - Statische Website */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Header & Navigation */
header {
    background: #1a1a2e;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff !important;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ccc !important;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff !important;
}

/* Main Content */
main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 2rem;
}

h1 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.8rem;
    color: #16213e;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
    color: #0f3460;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

a {
    color: #e94560;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

blockquote {
    border-left: 4px solid #e94560;
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: #555;
}

/* Kontaktformular */
form {
    max-width: 600px;
    margin: 2rem 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

input[type="checkbox"] {
    margin-right: 0.5rem;
}

button[type="submit"] {
    background: #e94560;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

button[type="submit"]:hover {
    background: #c81e45;
}

/* Kontaktformular-Grid */
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form-grid .full-width { grid-column: 1 / -1; }
.contact-form-grid label { display: block; font-weight: 600; margin-bottom: 8px; color: #333; }
.consent-box label { font-weight: 400 !important; display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.btn-primary { background: #e94560; color: #fff; border: none; padding: 0.75rem 2rem; font-size: 1rem; border-radius: 4px; cursor: pointer; transition: background .3s; }
.btn-primary:hover { background: #c81e45; }

/* Footer */
footer {
    background: #1a1a2e;
    color: #ccc;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

footer a {
    color: #e94560 !important;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 48px; width: auto; }
@media (max-width: 768px) { .logo img { height: 36px; } }

/* FAQ */
.faq-item { margin-bottom: 20px; }
.faq-item h4 { margin-bottom: 8px; }
