:root {
    --vs-purple: #68217a;
    --vs-blue: #0078d4;
    --vs-dark: #1e1e1e;
    --vs-light: #252526;
    --ms-blue: #0067b8;
}

body {
    background: linear-gradient(135deg, var(--vs-dark) 0%, var(--vs-light) 100%);
    color: #e4e4e4;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

main {
    margin: 0 1rem;
}

.header {
    background: linear-gradient(90deg, var(--vs-purple) 0%, var(--vs-blue) 100%);
    padding: 2rem 0;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.header h1 {
    color: white;
    font-weight: 600;
    margin: 0 0 0 2rem;
}

.header-subtitle {
    margin: 0.5rem 0 0 2rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.content-section {
    background: rgba(37, 37, 38, 0.95);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    border-left: 4px solid var(--vs-blue);
}

.impressum-table {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 6px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.impressum-table table {
    width: 100%;
    color: #e4e4e4;
}

.impressum-table td {
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.impressum-table td:first-child {
    font-weight: 600;
    color: var(--vs-blue);
    width: 120px;
}

.impressum-table tr:last-child td {
    border-bottom: none;
}

.impressum-table a {
    color: var(--ms-blue);
    text-decoration: none;
}

.impressum-table a:hover {
    color: var(--vs-blue);
    text-decoration: underline;
}

h2 {
    color: var(--vs-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--vs-purple);
    padding-bottom: 0.5rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    line-height: 1.6;
}

.values-list li:before {
    content: "▸";
    color: var(--vs-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.footer {
    background: var(--vs-dark);
    color: #888;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 3px solid var(--vs-purple);
}

.highlight {
    color: var(--vs-blue);
    font-weight: 600;
}