.budi-vertical-process-step__container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.budi-vertical-process-step__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.budi-vertical-process-step__item.animate {
    opacity: 1;
    transform: translateY(0);
}

.budi-vertical-process-step__item.animate:nth-child(1) {
    transition-delay: 0.1s;
}

.budi-vertical-process-step__item.animate:nth-child(2) {
    transition-delay: 0.3s;
}

.budi-vertical-process-step__item.animate:nth-child(3) {
    transition-delay: 0.5s;
}

.budi-vertical-process-step__item.animate:nth-child(4) {
    transition-delay: 0.7s;
}

.budi-vertical-process-step__item.animate:nth-child(5) {
    transition-delay: 0.9s;
}

.budi-vertical-process-step__item:last-child {
    margin-bottom: 0;
}

.budi-vertical-process-step__item-content {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 30px;
}

.budi-vertical-process-step__item-icon {
    width: 85px;
    height: 85px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.budi-vertical-process-step__item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.budi-vertical-process-step__item-text {
    flex: 1;
    position: relative;
}

.budi-vertical-process-step__item-title {
    font-size: 22px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    line-height: 1.4;
    margin-top: 5px;
}

@media screen and (max-width: 767px) {
    .budi-vertical-process-step__item {
        margin-bottom: 40px;
    }

    .budi-vertical-process-step__item-icon {
        width: 60px;
        height: 60px;
    }

    .budi-vertical-process-step__item-title {
        font-size: 20px;
    }
}