/* email-coaching Formular Styles */
#email-coaching {
    background-color: #000000;
    padding: 4rem 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

#email-coaching .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4%;
}

#email-coaching .email-coaching-form {
    background-color: #fff;
    padding: 16px 24px;
    border-radius: 20px;
    width: 50%;
    /* Konsistent mit contactForm */
    min-width: 300px;
    /* Mindestbreite für Mobilgeräte */
    max-width: 700px;
    /* Erhöht für mehr Breite, passt besser zu contactForm */
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#email-coaching .email-coaching-form h2 {
    color: #000000;
    text-align: center;
    font-size: 42px;
    line-height: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

#email-coaching .email-coaching-form p {
    color: #000000;
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
}

#email-coaching .email-coaching-form p.small {
    color: #666;
    text-align: center;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 20px;
}

#email-coaching .email-coaching-form form {
    display: flex;
    flex-direction: column;
}

#email-coaching .email-coaching-form label {
    color: #000;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 6px;
}

#email-coaching .email-coaching-form input[type="text"],
#email-coaching .email-coaching-form input[type="email"],
#email-coaching .email-coaching-form select,
#email-coaching .email-coaching-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
}

#email-coaching .email-coaching-form input::placeholder,
#email-coaching .email-coaching-form textarea::placeholder {
    font-size: 16px;
    color: #ccc;
}

#email-coaching .email-coaching-form textarea {
    height: 100px;
}

#email-coaching .email-coaching-form .email-coaching-checkbox-label {
    color: #000;
    font-size: 16px;
    /* Erhöht für bessere Sichtbarkeit */
    font-weight: bold;
    /* Fett für Hervorhebung */
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    /* Oben ausrichten für bessere Umbrüche */
    justify-content: flex-start;
    /* Links ausrichten */
    gap: 10px;
    /* Abstand zwischen Checkbox und Text */
    max-width: 100%;
    white-space: normal;
    /* Natürliche Umbrüche */
    text-align: left;
    /* Explizit linksbündig */
    flex-wrap: wrap;
    /* Erlaubt Umbruch ohne Verschiebung */
    line-height: 1.4;
    /* Natürlicher Zeilenabstand */
    word-break: break-word;
    /* Besserer Wortumbruch */
    padding-left: 0;
    /* Kein extra Padding links */
}

#email-coaching .email-coaching-form .email-coaching-checkbox-label a {
    color: #007bff;
    /* Stil der Links, an dein Design anpassbar */
    text-decoration: underline;
}

/* Neue Regel für die Checkbox selbst, um sie sichtbarer zu machen */
#email-coaching .email-coaching-form input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid #007bff;
    /* Blaue Border für Kontrast */
    border-radius: 4px;
    /* Leicht abgerundet */
    accent-color: #007bff;
    /* Farbe beim Anklicken, passend zu Links */
    cursor: pointer;
    flex-shrink: 0;
    /* Verhindert Verkleinerung */
}

#email-coaching .email-coaching-form button {
    background-color: #e20000;
    color: #ffffff;
    padding: 16px;
    border: 1px solid #e20000;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    width: 60%;
    margin: 20px auto 0;
    /* Zentriert den Button */
    box-shadow: #242424 4px 4px 5.6px;
    transition: all 360ms ease;
}

#email-coaching .email-coaching-form button:hover {
    color: #ffffff;
    background: #ff0000;
    box-shadow: #242424 0px 5px 15px;
}

#email-coaching .email-coaching-form .note {
    color: #666;
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
}

/* Neue Regel für linksbündigen Text */
#email-coaching .email-coaching-form .left-align {
    text-align: left;
}

/* Responsives Design */
@media (max-width: 768px) {
    #email-coaching .email-coaching-form {
        width: 90%;
        /* Mehr Breite auf Mobilgeräten */
        max-width: 100%;
        /* Entfernt die obere Grenze auf kleinen Bildschirmen */
    }

    #email-coaching .email-coaching-form .email-coaching-checkbox-label {
        font-size: 14px;
        /* Etwas größer als vorher für Mobile */
    }

    #email-coaching .email-coaching-form input[type="checkbox"] {
        width: 18px;
        height: 18px;
        /* Leicht kleiner auf Mobile, aber immer noch sichtbar */
    }

    #email-coaching .email-coaching-form button {
        width: 80%;
        /* Breiter auf Mobile */
    }
}