/* ==========================================================================
   1. GLOBALE EINSTELLUNGEN & RESET
   ========================================================================== 
*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #121212;
    color: #eee;
}

/* ==========================================================================
   2. LAYOUT & CONTAINER
   ========================================================================== 
*/
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto !important;
    padding: 40px 20px;
    background-color: #1e1e1e;
    min-height: 80vh;
}

.content-wrapper h2 {
    color: #e74c3c;
    margin-bottom: 25px;
    margin-left: 25px; /* Die 25px-Flucht */
    text-align: left;
}

/* Hero / Banner */
.hero-container {
    width: 100%;
    overflow: hidden;
    background-color: #000;
    display: flex;
    justify-content: center;
    border-bottom: 3px solid #e74c3c;
}

.hero-image {
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: block;
    object-fit: cover;
}
