/* Allgemeines Styling */
    .wpcf7 form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    font-family: 'Montserrat', sans-serif;
    color: #000;
    }

    /* Label */
    .wpcf7 form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #000;
    }

    /* Inputfelder */
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="date"],
    .wpcf7 textarea,
    .wpcf7 select {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    transition: border 0.3s ease;
    }

    .wpcf7 input:focus,
    .wpcf7 textarea:focus {
    border-color: #013b7b;
    outline: none;
    }

    /* Checkboxen */
    .wpcf7 form .wpcf7-checkbox {
    margin-bottom: 1.5rem;
    }
    .wpcf7-checkbox label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: normal;
    }

    /* Upload */
    .wpcf7 input[type="file"] {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    }

    /* DSGVO Checkbox */
    .wpcf7-acceptance {
    margin-bottom: 1.5rem;
    }

    /* Submit Button */
    .wpcf7 input[type="submit"] {
    background-color: #013b7b;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease;
    }

    .wpcf7 input[type="submit"]:hover {
    background-color: #00264d;
    }

    /* Erfolgs-/Fehlermeldungen */
    .wpcf7-response-output {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    }

    .wpcf7-mail-sent-ok {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    }

    .wpcf7-validation-errors,
    .wpcf7-mail-sent-ng {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    }