.form-autohandel {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.form-autohandel h4 {
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 16px;
    text-transform: uppercase;
}

.form-autohandel p {
    margin-bottom: 15px;
    line-height: 1.4;
}

.form-autohandel input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]) {
    width: 100%;
    background-color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    margin-bottom: 10px;
    font-size: 14px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
    outline: none;
}

.form-section-intro {
    background-color: #fff;
    box-shadow: 0 0 20px -20px #000;
}

.form-section-intro,
.form-section-vehicles-wrapper {
    flex: 1 1 48%;
}

.form-section-intro,
.form-section-vehicles-wrapper,
.form-section-main {
    padding: min(4vw, 40px);
    border-radius: 25px;
}

.form-section-vehicles-wrapper,
.form-section-main {
    background-color: #f2f2f2;
}

.form-section-main {
    flex: 0 0 100%;
}

.form-section-manual {
    margin-top: 30px;
}

.form-section-company label,
.form-section-manual label:not(.inline-group label),
.form-section-main .inline-group,
.form-section-manual .inline-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-section-company .wpcf7-form-control-wrap,
.form-section-manual .wpcf7-form-control-wrap {
    width: 70%;
}

.form-section-company input,
.form-section-manual input {
    width: 100% !important;
    margin-bottom: 0 !important;
}

.form-section-vehicles label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    padding: 5px 0;
    border-bottom: 1px solid #e0e0e0;
}

.form-section-vehicles input {
    width: 100px !important;
    text-align: center;
    margin-bottom: 0 !important;
}

.form-autohandel .wpcf7-list-item {
    margin: 0 10px 10px 0;
}

.form-autohandel .wpcf7-list-item-label {
    background: #fff;
    border: 2px solid #fff;
    padding: 8px 25px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-autohandel input[type="radio"]:checked + .wpcf7-list-item-label {
    background: #333;
    color: #fff;
}

.nip-fields,
.name-fields {
    display: flex;
    gap: 15px;
    width: 70%;
}

.nip-fields input,
.name-fields input {
    width: 100% !important;
}

.nip-fields .wpcf7-form-control-wrap {
    width: 75% !important;
}

.nip-fields button {
    cursor: pointer;
    width: 25% !important;
    border-radius: 30px;
    background-color: #fff;
    border-width: 1px;
}

.form-autohandel .wpcf7-submit {
    background-color: #14a82a;
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 35px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    margin: 30px 0 0 auto;
    transition: background 0.3s;
}

.form-autohandel .wpcf7-submit:hover {
    background-color: #0f8a22;
}

@media (max-width: 600px) {
    .form-section-intro,
    .form-section-vehicles-wrapper {
        flex: 0 0 100%;
    }

    .form-section-company label,
    .form-section-manual label,
    .form-section-main .inline-group,
    .form-section-manual .inline-group,
    .name-fields,
    .nip-fields {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-section-company .wpcf7-form-control-wrap,
    .form-section-manual .wpcf7-form-control-wrap,
    .form-section-company input,
    .nip-fields,
    .nip-fields input,
    .nip-fields button,
    .name-fields,
    .name-fields input {
        width: 100% !important;
    }
}