* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;   /* Stapelt Elemente vertikal */
    align-items: center;      /* Zentriert horizontal */
    min-height: 100vh;
    padding: 2rem 0;          /* Abstand oben/unten */
}

.container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    width: 60%;
    max-width: 60%;
    min-width: 50%;
    min-height: 80vh;
    text-align: left;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;      /* Abstand zum Footer */
    overflow: auto;
}

.footer {
    width: 60%;
    background: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    max-width: 60%;
    min-width: 50%;
    text-align: left;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: -1;   /* sorgt dafür, dass es hinter Container & Footer liegt */
}

.logo {
    display: block;
    margin: 0 auto 20px;
    width: 150px;
}

h1 {
    text-align: left;
    font-size: 24px;
    margin-bottom: 10px;
}
h2 {
    text-align: left;
    font-size: 18px;
    margin-bottom: 10px;
}
h3 {
    text-align: left;
    font-size: 14px;
    margin-bottom: 10px;
}
p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: left;
}
ul {
    font-size: 16px;
    margin-bottom: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 5px;
}
nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

nav a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}
#hilfelotse { margin-top: 2rem; }
#hilfelotse h2 { margin-bottom: .5rem; }
#hilfelotse p { margin-bottom: 1rem; }
#hilfelotse ul { margin: 0 0 1rem 1.2rem; }
#hilfelotse .cta { display: flex; gap: 1rem; align-items: center; }
#hilfelotse .button {
    display: inline-block; padding: .6rem 1rem; border-radius: .5rem;
    text-decoration: none; border: 1px solid #ccc;
}
#kontakt {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
}

#kontakt h2 {
    margin-bottom: .5rem;
}

#kontakt a {
    color: #003366;
    text-decoration: none;
}

#kontakt a:hover {
    text-decoration: underline;
}