/* =========================
   BASIC RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   BASE STYLES
========================= */

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #111;
    background-color: #fff;
}

/* FIX: Scrollbar stabil (kein Layout shift) */
html {
    overflow-y: scroll;
}

/* =========================
   HEADER
========================= */

header {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 30px;
    text-align: left;
}

header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.header-subline {
    margin-bottom: 25px;
}

/* FIX: Typo ruhiger und konsistenter */
.subtitle,
.subsubtitle {
    font-size: 16px;
    font-weight: normal;
}

.subsubtitle {
    color: #333;
}

/* =========================
   NAVIGATION
========================= */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: #111;
    font-size: 16px;
}

.menu a:hover {
    text-decoration: underline;
}

.languages {
    display: flex;
    gap: 10px;
}

.languages a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
}

.languages a:hover {
    color: #000;
    text-decoration: underline;
}

/* =========================
   MAIN
========================= */

main {
    max-width: 900px;
    margin: 10px auto;
    padding: 0 20px;
}

.hero {
    text-align: left;
}

.hero h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

/* FIX: bessere Lesbarkeit der Liste */
.expertise-list {
    margin-left: 25px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.expertise-list li {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

/* =========================
   KONTAKT
========================= */

.contact-preview {
    margin-top: 20px;
}

.contact-preview h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-preview p {
    font-size: 18px;
    color: #333;
    margin-bottom: 6px;
}

/* =========================
   FOOTER
========================= */

footer {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 14px;
    color: #777;
}