/* Reset/Normalize */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    line-height: 1.15; /* bessere Lesbarkeit */
    -webkit-text-size-adjust: 100%; /* iOS Zoom-Fix */
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #fff;
    color: #000;
}

/* Block-Elemente standardisieren */
main, section, header, footer, nav, article, aside {
    display: block;
}

/* Listen ohne Standard-Punkte */
ul, ol {
    list-style: none;
}

/* Bilder und Medien */
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Links ohne Standard-Styling */
a {
    text-decoration: none;
    color: inherit;
}

/* Tabellen */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Formularelemente */
button, input, select, textarea {
    font: inherit;
    margin: 0;
}

h1,h2,h3,h4{
    padding: 0;
    margin: 0;
}
