body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #232323;
    color: #fff;
}

header {
    background: #181818;
    padding: 0.5em 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.logo-schriftzug {
    display: inline-block;
    font-size: 2.2em;
    font-weight: bold;
    background: linear-gradient(135deg, #b07cff 0%, #ff5e62 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
nav {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin: 1em 0;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: #ff5e62;
}
.hero {
    text-align: center;
    padding: 4em 1em 2em 1em;
    background: linear-gradient(135deg, #b07cff 0%, #ff5e62 100%);
    color: #fff;
    border-radius: 0 0 2em 2em;
}
.cta-btn {
    display: inline-block;
    margin-top: 2em;
    padding: 1em 2em;
    background: #232323;
    color: #fff;
    border-radius: 2em;
    font-size: 1.1em;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
    background: #ff5e62;
    color: #fff;
}
.vorteile {
    max-width: 700px;
    margin: 3em auto;
    background: #181818;
    border-radius: 1em;
    padding: 2em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.vorteile ul {
    list-style: none;
    padding: 0;
}
.vorteile li {
    margin: 1em 0;
    font-size: 1.2em;
    padding-left: 1.2em;
    position: relative;
}
.vorteile li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff5e62;
    font-weight: bold;
} 