.step-icon {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.step-icon i {
    font-size: 24px;
    color: #2b59ff;
    margin-right: 10px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.description {
    display: none;
    padding: 20px;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.description.active {
    display: block;
    -webkit-animation: fadeIn 0.3s ease;
            animation: fadeIn 0.3s ease;
}

@-webkit-keyframes fadeIn {
    from { opacity: 0; -webkit-transform: translateY(10px); transform: translateY(10px); }
    to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; -webkit-transform: translateY(10px); transform: translateY(10px); }
    to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}