/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #0f172a; /* leicht dunkler als schwarz */
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Layout */
.container {
    max-width: 720px;
    margin: 100px auto;
    padding: 0 24px;
}

/* Typography */
h1 {
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 8px;
    color: #64748b; /* subtiler Grauton */
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

p {
    font-size: 0.95rem;
    color: #334155;
    margin-bottom: 16px;
}

/* Links */
a {
    color: #0f172a;
    text-decoration: none;
    border-bottom: 1px solid #cbd5e1;
    transition: all 0.2s ease;
}

a:hover {
    border-color: #0f172a;
}

/* Divider */
hr {
    margin: 80px 0;
    border: none;
    border-top: 1px solid #e2e8f0;
}

/* Form (falls genutzt) */
input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    border-radius: 6px;
    background: #fafafa;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #0f172a;
    background: #ffffff;
}

button {
    padding: 10px 18px;
    border: none;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

button:hover {
    opacity: 0.8;
}