.msr-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.msr-header {
    text-align: center;
    margin-bottom: 30px;
}

.msr-title {
    color: #1e3c72;
    font-size: 2em;
    margin-bottom: 10px;
}

.msr-flow-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.msr-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    align-items: center;
}

.msr-item-number {
    background: #1e3c72;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.msr-item-content {
    flex-grow: 1;
}

.msr-item-title {
    color: #1e3c72;
    font-weight: bold;
    margin-bottom: 5px;
}

.msr-item-desc {
    color: #666;
    font-size: 0.9em;
}

.msr-item::after {
    content: '↓';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: #1e3c72;
    font-size: 1.5em;
}

.msr-item:last-child::after {
    display: none;
}

@media (max-width: 768px) {
    .msr-wrapper {
        padding: 15px;
    }
    
    .msr-item {
        padding: 15px;
    }
}