/* Grundlegende Reset- und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Seitenhintergrund */
body {
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f6f8;
    color: #333;
    line-height: 1.6;
}

/* Zentrierung des Containers */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Hauptcontainer */
.container {
    background-color: #ffffff;
    max-width: 1100px;
    width: 100%;
    padding: 30px;
    border-radius: 16px;

    /* Leichter moderner Schatten */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Beispielhafte Typografie */
.container h1 {
    margin-bottom: 16px;
    font-size: 2rem;
}

.container p {
    margin-bottom: 12px;
}
