/* Grundlegendes Styling */
.wpcf7-form {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

/* Zweispaltiges Layout für die ersten sechs Felder */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Einheitliches Styling für Inputs und Select */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select {
    width: 100%;
    padding: 10px;
    font-size: 18px; /* Etwas größer */
    border: none;
    border-bottom: 2px solid #6AB165; /* Nur untere Border */
    outline: none;
    transition: border-color 0.3s ease;
}

/* Abstand nach den ersten sechs Feldern */
.form-grid div {
    margin-bottom: 15px;
}

/* Styling für das Select-Feld */
.wpcf7-form select {
    appearance: none;
    background: white url('data:image/svg+xml;utf8,') no-repeat right 10px center;
    background-size: 15px;
    padding-right: 30px;
    cursor: pointer;
    height: 45px; /* Normalisierte Größe */
    border-bottom: 2px solid #6AB165;
    margin-bottom: 18px; /* Abstand nach unten */
}

/* Styling für Berufserfahrung */
.wpcf7-form input[type="number"] {
    font-size: 18px; /* Etwas größer */

}

/* Styling für das Upload-Feld */
.upload-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px dashed #6AB165;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px
}

.upload-container:hover {
    background-color: #f3f3f3;
}

/* Versteckt das eigentliche File-Input */
.wpcf7-form input[type="file"] {
    display: none;
}

/* Styling für den Submit-Button */
.wpcf7-form input[type="submit"] {
    width: 100%;
    background-color: #6AB165;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 0px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-weight:300;
}

.wpcf7-form input[type="submit"]:hover {
    background-color: #5E9A58;
}

/* Styling für das Select-Feld mit kleinerer Schriftgröße */
.wpcf7-form select, .wpcf7-form textarea {
    font-size: 18px!important; /* Kleinere Schriftgröße */
    padding-right:;
    padding-left: 5px;
    cursor: pointer;
    border-bottom: 2px solid #6AB165;
    margin-bottom: 20px;

}


..entry-title{
    font-size:24px!importantimportant;
}