:root {
    --second-family: 'Plus Jakarta Sans', sans-serif;
    --font-family: 'DM Sans', sans-serif;
    --body-font: 'DM Sans', sans-serif;
    --color-text-text-950: #0f172a;
    --color-text-text-450: #64748b;
    --color-text-text-400: #94a3b8;
    --color-badge-bg: #d8f3e5;
    --color-badge-text: #0f3f2e;
}

.assist-section {
    margin: 0 auto;
    background-color: #fff;
    width: 100%;
    font-family: var(--body-font);
    padding: 64px 0;
}

.assist-content {
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.assist-image {
    flex: none;
    width: 660px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.assist-image img {
    width: 660px;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    filter: brightness(0.95);
}

.assist-info {
    flex: 1;
    max-width: 605px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.assist-section .info-box {
    display: inline-block;
    background-color: var(--color-badge-bg);
    color: #292929;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    padding: 6px 14px;
    border-radius: 5px;
    margin-bottom: 16px;
    white-space: nowrap;
    max-width: max-content;
    box-sizing: content-box;
    margin: 0;
}

.assist-title {
    font-family: var(--second-family);
    font-size: 42px;
    font-weight: 700;
    color: #292929;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.assist-desc {
    color: #161616;
    line-height: 1.6;
    margin: 0 0 16px 0;
    font-size: 16px;
    font-family: var(--second-family);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.step-title {
    font-family: var(--second-family);
    color: #292929;
    font-weight: 600;
    font-size: 26px;
    margin: 0 0 6px 0;
}

.step-desc {
    font-family: var(--font-family);
    font-size: 16px;
    color: #161616;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e5e5;
    line-height: 1.5;
}

.process-steps > div:last-child .step-desc {
    border-bottom: none;
}

@media (max-width: 992px) {
    .assist-content {
        flex-direction: column;
        gap: 33px;
        padding-inline: 8px;
        align-items: flex-start;
    }

    .assist-image,
    .assist-info {
        max-width: 100%;
    }

    .assist-image img {
        max-width: 685px;
        max-height: 724px;
        border-radius: 12px;
        margin-bottom: 40px;
        display: block;
        width: 100%;
        height: auto;
    }

    .assist-title {
        font-size: 32px;
    }

    .assist-desc {
        font-size: 16px;
    }

    .step-title {
        font-size: 21px;
    }

    .step-desc {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .assist-section {
        padding-top: 48px;
        padding-bottom: 0;
    }

    .assist-image img {
        width: 400px;
        height: 444px;
        max-height: 444px;
    }

    .assist-image img {
        margin-bottom: 0;
    }

    .assist-title {
        font-size: 32px;
    }

    .assist-desc {
        font-size: 16px;
    }

    .step-title {
        font-size: 21px;
    }

    .step-desc {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .assist-image img {
        max-height: 400px;
        width: 100%;
        height: auto;
        padding-bottom: 8px;
    }
}
