* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    color: #1a1a1a;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid #e0e0e0;
}
nav .logo {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #1a1a1a;
    text-decoration: none;
}
nav .menu {
    display: flex;
    gap: 1.8rem;
}
nav .menu a {
    font-size: 0.85rem;
    color: #555;
    text-decoration: none;
    letter-spacing: 0.03em;
}
nav .menu a:hover {
    color: #1a1a1a;
}
nav .menu a.active {
    color: #1a1a1a;
    font-weight: 600;
}

/* Main */
main {
    flex: 1;
    max-width: 640px;
    margin: 0 auto;
    padding: 3rem 2rem;
}
main.hero {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Typography */
h1 {
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}
h1.page-title {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}
h2 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1.8rem;
    margin-bottom: 0.5rem;
}
p, li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.4rem;
}
a {
    color: #555;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Lists */
ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 0.8rem;
}
li::before {
    content: "–\00a0\00a0";
}

/* Hero */
.hero-image {
    max-width: 100%;
    width: 600px;
    height: auto;
    margin-bottom: 2rem;
}
.hinweis {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Footer */
footer {
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid #e0e0e0;
}
footer a {
    color: #555;
    margin: 0 1rem;
}
footer .copyright {
    margin-top: 0.8rem;
    font-size: 0.75rem;
    color: #999;
}

/* Responsive */
@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 0.8rem;
    }
    nav .menu {
        gap: 1rem;
    }
}
