body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background-color: #333;
    padding: 15px 0;
    text-align: center; /* Zentriert das Logo innerhalb des Headers */
}

.logo {
    width: 200px; /* Breite des Logos */
    height: 60px; /* Höhe des Logos */
}

.main-content {
    text-align: center;
    background-color: #fff;
}

.form-background {
    background-image: url('slider.jpeg'); /* Bild als Hintergrund */
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    position: relative;
    margin-top: -20px; /* Entfernt die Lücke zwischen Header und Bild */
}

.form-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dunkle, halbtransparente Überlagerung */
    z-index: 1;
}

.form-background .container {
    position: relative;
    z-index: 2;
}

.main-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff; /* Textfarbe auf Weiß gesetzt */
}

.main-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #fff; /* Textfarbe auf Weiß gesetzt */
}

.email-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.email-form input[type="email"] {
    padding: 12px;
    font-size: 1rem;
    width: 60%;
    border: 2px solid #ccc;
    border-radius: 5px;
}

.email-form button {
    padding: 12px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background-color: #ff6600;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.email-form button:hover {
    background-color: #e55d00;
}

.disclaimer {
    font-size: 0.65rem;
    color: #fff; /* Textfarbe auf Weiß gesetzt */
    margin-top: 5px;
    text-align: center;
}

.disclaimer a {
    color: #ff6600;
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

.privacy {
    background-color: #f9f9f9; /* Hellerer Hintergrund für mehr Kontrast */
    padding: 15px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #333; /* Sicherstellen, dass der Text in Dunkelgrau (#333) ist */
    position: relative; /* Sicherstellen, dass dieser Abschnitt nicht von anderen Stilen beeinflusst wird */
}

.privacy p {
    margin: 5px 0;
    text-align: center;
    color: #333; /* Textfarbe explizit auf #333 gesetzt */
}

.privacy small {
    display: block;
    font-size: 0.75rem;
    color: #999;
}

.info-section {
    background-color: #fff;
    padding: 30px 0;
    text-align: left;
}

.info-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.info-section ul {
    list-style: none; /* Entfernt die Standard-Bulletpoints */
    padding: 0;
    margin: 0 0 20px 0;
}

.info-section ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    padding-left: 25px; /* Etwas mehr Abstand, um Platz für die benutzerdefinierten Bulletpoints zu schaffen */
    position: relative;
}

.info-section ul li::before {
    content: "•";
    color: #ff6600;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* Vertikale Ausrichtung der Bulletpoints zentriert mit dem Text */
    font-size: 1.2rem; /* Leicht vergrößert für bessere Sichtbarkeit */
}

.small-print {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4rem;
}

.small-print a {
    color: #ff6600;
    text-decoration: none;
}

.small-print a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}
