.vwd-form-container { 
        max-width: 500px; 
        margin: 20px auto; 
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding: 15px;
    }
    .vwd-form-group { margin-bottom: 20px; }
    .vwd-form-group label { 
        display: block; 
        margin-bottom: 8px; 
        font-weight: 600; 
        color: #333;
    }
    .vwd-input { 
        width: 100%; 
        padding: 14px; 
        border: 1px solid #bbb; 
        border-radius: 6px; 
        box-sizing: border-box; 
        font-size: 16px; /* Verhindert Auto-Zoom auf Mobile */
        background: #f9f9f9;
    }
    .vwd-input:focus { border-color: #003B46; background: #fff; outline: none; }
    
    .vwd-submit-btn { 
        background-color: #003B46; 
        color: white; 
        padding: 15px; 
        border: none; 
        border-radius: 6px; 
        cursor: pointer; 
        width: 100%; 
        font-size: 18px; 
        font-weight: bold;
        transition: background 0.3s;
    }
    .vwd-submit-btn:hover { background-color: #0056b3; }

    /* Der unsichtbare Honeypot-Spamschutz */
    .hp-wrapper { display: none !important; visibility: hidden; }

    /* Kontakt-Layout: Formular links, Kontaktdaten rechts */
    .kontakt-layout {
        display: flex;
        gap: 3rem;
        align-items: center;
        flex-wrap: wrap;
    }
    .kontakt-formular {
        flex: 1 1 340px;
    }
    .kontakt-daten {
        flex: 0 1 500px;
        display: flex;
        align-items: center;
    }
    .kontakt-daten-inner {
        line-height: 1.9;
    }
    @media (max-width: 680px) {
        .kontakt-layout {
            flex-direction: column;
        }
        .kontakt-daten {
            width: 100%;
            justify-content: center;
            text-align: center;
        }
    }
/* Datenschutz Checkbox — WCAG AAA konform */
.vwd-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.vwd-form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: #003B46;
    cursor: pointer;
}
.vwd-form-checkbox input[type="checkbox"]:focus-visible {
    outline: 3px solid #003B46;
    outline-offset: 2px;
}
.vwd-form-checkbox label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #1e293b;
    font-weight: normal;
    cursor: pointer;
}
.vwd-form-checkbox label a {
    color: #003B46;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}