.section12_inner_right {
    width: 537px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 24px 42px rgba(132, 41, 97, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: left;
}

.consult-qualification {
    background: #fff3f5;
    border-radius: 10px 10px 0px 0px;
    padding: 18px 30px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.consult-qualification__title {
    font-size: 19px;
    font-weight: 900;
    color: #333;
    margin: 0 0 10px;
}

.consult-qualification__list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    line-height: 1.7;
    color: #636363;
}

.consult-qualification__list li {
    position: relative;
    padding-left: 12px;
}

.consult-qualification__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
}

.consult-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
}

.consult-form__field {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 8px;
}

.consult-form__field label,
.consult-form__label {
    font-size: 16px;
    padding-top: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.consult-form__field input[type="text"],
.consult-form__field input[type="email"] {
    height: 52px;
    border: 1px solid #cfcfcf;
    border-radius: 5px;
    padding: 0 18px;
    font-size: 15px;
    color: #393939;
    background: rgba(255, 255, 255, 0.95);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.consult-form__field input::placeholder {
    color: #c9b8c4;
}

.consult-form__field input[type="text"]:focus,
.consult-form__field input[type="email"]:focus {
    border-color: #f48fb5;
    box-shadow: 0 0 0 3px rgba(244, 143, 181, 0.18);
    outline: none;
}

.consult-form__field--program {
    display: block;
}

.consult-program {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.consult-program__option {
    position: relative;
}

.consult-program__option input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.consult-program__option label {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border: 1px solid #cfcfcf;
    border-radius: 5px;
    padding: 15px 12px;
    font-size: 14px;
    line-height: 1.45;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.consult-program__option input:checked+label {
    background: #fff1f1;
    border-color: #ffb0bd;
    color: #ff6d81;
    box-shadow: 0 10px 22px rgba(194, 79, 142, 0.18);
    font-weight: 700;
}

.consult-form__field--agree {
    margin-top: 0px;
    display: block;
    text-align: right;
}

.consult-form__field--agree a {
    font-size: 13px;
    color: #333;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 5px;
    vertical-align: text-top;
}

.consult-form__field--agree .consult-checkbox {
    padding: 0px;
}

.consult-checkbox {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
}

.consult-checkbox input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.consult-checkbox__shape {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1px solid #cfcfcf;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.consult-checkbox input:checked+.consult-checkbox__shape {
    border-color: #f58ab7;
    background: linear-gradient(180deg, #ff9fc4 0%, #f572b1 100%);
    box-shadow: 0 0 0 3px rgba(244, 143, 181, 0.18);
}

.consult-checkbox input:checked+.consult-checkbox__shape::after {
    /* content: ""; */
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: #fff;
}

.consult-checkbox__label {
    font-size: 13px;
    color: #333;
}

.consult-submit {
    display: block;
    width: 100%;
    margin-top: 0px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.consult-submit img {
    width: 100%;
    display: block;
}