body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #0d112d;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

/* Hero Hintergrund */
body::before {
    content: "";
    position: fixed;
    left: -150px;
    top: 20%;
    width: 900px;
    height: 900px;
    background-image: url("hero-img.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%);
    opacity: 0.15;
    animation: heroFloat 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes heroFloat {
    0% { transform: translateY(-50%) translateY(0px); }
    50% { transform: translateY(-50%) translateY(-50px); }
    100% { transform: translateY(-50%) translateY(0px); }
}

.container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

h1 {
    color: #333;
}

.job-link {
    display: flex;
    align-items: center;
    padding: 15px;
    margin: 10px 0;
    background: #0073e6;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    justify-content: center;
    transition: 0.3s;
}

.job-link:hover {
    background: #005bb5;
}

.job-link img {
    margin-right: 10px;
    width: 15px;
    height: 15px;
}

.impressum-link {
    font-size: 0.9em;
    color: #777;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
}

.impressum-link:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    body::before {
        width: 100vw;
        height: 100vh;
        left: -10vw;
        opacity: 0.05;
    }

    .container {
        padding: 15px;
    }
}