/* Gesamtes Formular */
.wpcf7 {
position: relative;
left: 0 !important;
transform: none !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    padding: 30px;
    border: 2px solid #e30014;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Labels */
.wpcf7 label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

/* Eingabefelder */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    background: #fff;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

/* Fokus */
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    outline: none;
    border-color: #e30014;
    box-shadow: 0 0 0 3px rgba(227, 0, 20, 0.15);
}

/* Textarea */
.wpcf7 textarea {
    min-height: 150px;
}

/* Absenden-Button */
.wpcf7 input[type="submit"] {
    background: #e30014;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Hover */
.wpcf7 input[type="submit"]:hover {
    background: #b00010;
    transform: translateY(-1px);
}

/* Fehlermeldungen */
.wpcf7-not-valid {
    border-color: #e30014 !important;
}

/* Erfolgsmeldung */
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #e30014;
}