/* DEFINITION DES STYLES (ANGELEHNT AN MODERNES B2B SOFTWARE-DESIGN) */
:root {
    --primary-dark: #1e3a5f; /* Dunkelblau, wie oft in Tech-Logos */
    --accent-blue: #0070c0; /* Klarer, professioneller Akzent-Blau */
    --text-light: #f4f4f4;
    --text-dark: #333333;
    --bg-light: #ffffff;
}

/* Basis-Styling */
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Moderner, klarer Font Stack */
    margin: 0; 
    padding: 0; 
    color: var(--text-dark); 
    background-color: var(--bg-light); 
    line-height: 1.6;
}
.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* HEADER / HERO SECTION (Dunkler Hintergrund für professionellen Look) */
header { 
    background-color: var(--primary-dark); 
    color: var(--text-light); 
    padding: 60px 0; 
    text-align: center; 
}
.logo { 
    font-size: 1.8em; 
    font-weight: 700; 
    letter-spacing: 1px;
    margin-bottom: 5px; 
}

/* Bild-Platzhalter mit subtilem, dunklem Overlay */
.hero-image-placeholder { 
    height: 350px; /* Etwas kleiner für den One-Pager */
    background: url('PFAD_ZU_IHREM_DYNAMISCHEN_BILD') no-repeat center center; 
    background-size: cover; 
    display: flex; 
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    margin-bottom: 30px;
    position: relative;
}
.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Dunkles Overlay */
}
.hero-content {
    position: relative; /* Über dem Overlay */
    z-index: 10;
    color: white;
    padding: 20px;
    text-align: center;
}

h1 { 
    margin: 0 0 10px 0; 
    font-size: 2.8em; 
    font-weight: 300; 
} /* Schlankere Schriftart für Modernität */
.slogan { 
    font-size: 1.3em; 
    margin-bottom: 35px; 
    font-weight: 300; 
} 

/* CTA-Button (Auffälliger Akzent-Blau) */
.cta-button { 
    display: inline-block; 
    padding: 15px 35px; 
    background-color: var(--accent-blue); 
    color: white; 
    text-decoration: none; 
    border-radius: 4px; 
    font-size: 1.1em; 
    font-weight: bold; 
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cta-button:hover { 
    background-color: #0056b3; 
    transform: translateY(-2px); 
}

/* Content-Bereich */
.content-section { 
    padding: 50px 0; 
    text-align: center; 
    background-color: var(--bg-light); 
}
.content-section h2 { 
    color: var(--primary-dark); 
    margin-bottom: 30px; 
    font-size: 2em; 
    border-bottom: 2px solid var(--accent-blue);
    display: inline-block;
    padding-bottom: 5px;
}
.content-section p { 
    font-size: 1.1em; 
    max-width: 800px; 
    margin: 15px auto; 
}

/* FOOTER (Rechtliches) */
footer { 
    background-color: var(--primary-dark); 
    color: var(--text-light); 
    padding: 25px 0; 
    text-align: center; 
    font-size: 0.9em; 
}
footer a { 
    color: #aaa; 
    text-decoration: none; 
    margin: 0 15px; 
}
footer a:hover { 
    color: white; 
    text-decoration: underline; 
}

/* Rechtliche Texte (Kontrastreich, kleiner) */
.legal-section { 
    background-color: #eee; 
    padding: 40px 0; 
    font-size: 0.85em; 
    line-height: 1.8;
    color: #555;
}
.legal-section h3 { 
    color: var(--primary-dark); 
    margin-top: 25px; 
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}