.generalsub_section {
    padding: 44px 0 48px;
    color: #5a365b;
    background: #fff;
    font-family: inherit;
}

.generalsub_container {
    width: min(100% - 40px, 1650px);
    margin: 0 auto;
}

.generalsub_panel {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 40px 58px;
    background:
        radial-gradient(circle at 5% 20%, rgba(164, 111, 154, 0.13), transparent 28%),
        linear-gradient(135deg, #fbf4f8 0%, #fff 48%, #f7edf4 100%);
    border-radius: 8px;
    border: 1px solid rgba(122, 73, 120, 0.1);
}

.generalsub_icon {
    display: grid;
    place-items: center;
    width: 112px;
    height: 112px;
    color: #8d5488;
}

.generalsub_icon svg {
    display: block;
    width: 104px;
    height: 104px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.generalsub_title {
    max-width: 850px;
    margin: 0 0 22px;
    color: #5a365b;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.24;
}

.generalsub_message {
    margin: 0 0 14px;
    color: #5b7550;
    font-size: 14px;
    line-height: 1.45;
}

.generalsub_message_error {
    color: #9b3838;
}

.generalsub_form {
    max-width: 1050px;
}

.generalsub_form_row {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 230px;
    gap: 14px;
    align-items: stretch;
}

.generalsub_label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.generalsub_input {
    width: 100%;
    min-height: 54px;
    padding: 0 22px;
    color: #403840;
    background: #fff;
    border: 1px solid rgba(122, 73, 120, 0.18);
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.2;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.generalsub_input:focus {
    border-color: #7a4978;
    box-shadow: 0 0 0 3px rgba(122, 73, 120, 0.12);
}

.generalsub_button {
    min-height: 54px;
    padding: 0 28px;
    color: #fff;
    background: #7a4978;
    border: 1px solid #7a4978;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.generalsub_button:hover {
    background: #62375f;
    border-color: #62375f;
}

.generalsub_agreement {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin-top: 16px;
    color: #685c68;
    font-size: 12px;
    line-height: 1.45;
}

.generalsub_checkbox {
    width: 16px;
    height: 16px;
    margin: 1px 0 0;
    accent-color: #7a4978;
}

@media (max-width: 900px) {
    .generalsub_panel {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 34px 28px;
    }

    .generalsub_icon {
        width: 82px;
        height: 82px;
    }

    .generalsub_icon svg {
        width: 78px;
        height: 78px;
    }

    .generalsub_title {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .generalsub_section {
        padding: 34px 0;
    }

    .generalsub_container {
        width: min(100% - 24px, 1650px);
    }

    .generalsub_panel {
        padding: 28px 20px;
    }

    .generalsub_form_row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .generalsub_button {
        width: 100%;
    }
}
